function ablak(url){
self.name = "leiras";
info = window.open ('','ablak','WIDTH=640,HEIGHT=480')
if(info != null){
if(info.opener == null){
info.opener = self;
}
}
info.document.clear()
info.document.open()
info.document.write("<HTML><HEAD><TITLE>Nagy kép</TITLE>");
info.document.write("<BODY BGCOLOR=#ffffff TEXT=#000000 leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>")
info.document.write("<table width=640 height=480 border=0 cellpadding=0 cellspacing=0><tr><td align=center valign=middle>")
info.document.write("<A HREF=\"#\" onClick='window.close()'> <img border=0 src='./termekek/")
info.document.write(url)
info.document.write("'></a></td></tr></table></BODY></HTML>")
info.document.close()
}