  function show( name, w, h, title, author, email, page, url, info ) {
    dw = 32
	dh = 186
	mw = 480
	x = w + dw
	y = h + dh
	if ( x < mw ) { x = mw }
	s = "width=" + x + ",height=" + y + ",left=20,top=20,srcollbars=yes,resize=yes"
    var con = window.open( "", con, s )
con.document.write( '<html>\n' )
con.document.write( '  <head>\n' )
con.document.write( '    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">\n' )
con.document.write( '    <title>levlap.com - ', title, '</title>\n' )
con.document.write( '	<style>\n' )
con.document.write( '	  body { font-family: Verdana, Arial, Sans Serif, Helvetica; font-size: 10pt }\n' )
con.document.write( '	  a        { text-decoration: none; color: 0000A0 }\n' )
con.document.write( '	  a:normal { text-decoration: underline; color: 0000A0 }\n' )
con.document.write( '	  a:hover  { text-decoration: underline; color: FF6000 }\n' )
con.document.write( '	  .title   { font-family: Verdana, Arial, Sans Serif, Helvetica; font-size: 9pt }\n' )
con.document.write( '	  .text    { font-family: Verdana, Arial, Sans Serif, Helvetica; font-size: 7.5pt }\n' )
con.document.write( '	</style>\n' )
con.document.write( '  </head>\n' )
con.document.write( '  <body>\n' )
con.document.write( '    <center>\n' )
con.document.write( '	  <table border=0 cellspacing=0 cellpadding=4>\n' )
con.document.write( '	    <tr>\n' )
con.document.write( '		  <td align=center colspan=3>\n' )
con.document.write( '		    <img src="', name, '">\n' )
con.document.write( '		  </td>\n' )
con.document.write( '		</tr>\n' )
con.document.write( '		<tr>\n' )
con.document.write( '		  <td width=30% align=left class="title"><a href="mailto:', email, '">', author, '</a></td>\n' )
con.document.write( '		  <td width=40% align=center class="title"><b>', title, '</b></td>\n' )
con.document.write( '		  <td width=30% align=right class="title"><a href="', url, '">', page, '</a></td>\n' )
con.document.write( '		</tr>\n' )
con.document.write( '		<tr>\n' )
con.document.write( '		  <td colspan=3 class="text">\n' )
con.document.write( '		    ', info, '\n' ) 
con.document.write( '		  </td>\n' )
con.document.write( '		</tr>\n' )
con.document.write( '	  </table>\n' )
con.document.write( '	  <table border=0 cellspacing=0 cellpadding=4>\n' )
con.document.write( '	    <tr>\n' )
con.document.write( '		  <td align=center>\n' )
// con.document.write( '           <form action="javascript:opener.send();self.window.close()">\n' )
con.document.write( '           <form method=get action="cardform.php" target=new>\n' )   
con.document.write( '             <input type=submit value="Küldjük el a képeslapot!">\n' )

con.document.write( '             <input type=hidden name="name", value="', name, '">\n' )
con.document.write( '             <input type=hidden name="title", value="', title, '">\n' )
con.document.write( '             <input type=hidden name="info", value="', info, '">\n' )
con.document.write( '             <input type=hidden name="author", value="', author, '">\n' )
con.document.write( '             <input type=hidden name="email", value="', email, '">\n' )
con.document.write( '             <input type=hidden name="page", value="', page, '">\n' )
con.document.write( '             <input type=hidden name="url", value="', url, '">\n' )
con.document.write( '             <input type=hidden name="width", value="', w, '">\n' )
con.document.write( '             <input type=hidden name="height", value="', h, '">\n' )
  
con.document.write( '           </form>\n' )     
con.document.write( '		  </td>\n' )
con.document.write( '		  <td align=center>\n' )
con.document.write( '           <form action="javascript:self.close()">\n' )   
con.document.write( '             <input type=submit value="Csukjuk be az ablakot!">\n' )
con.document.write( '           </form>\n' )     
con.document.write( '		  </td>\n' )
con.document.write( '		</tr>\n' )
con.document.write( '	  </table>\n' )
con.document.write( '	 </center>\n' )
con.document.write( '  </body>\n' )
con.document.write( '</html>\n' )

con.document.close()
con.window.focus() 	
  
  }
