// JavaScript Document
function nagykep(kep,szelesseg,magassag)
{
     nk=open('','popup1','scrollbars=no,toolbar=no,location=no,directories=no,menubar=no,status=no,width='+szelesseg+',height='+magassag);
     nk.document.open();
     nk.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n");
     nk.document.write("<HTML><HEAD><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8892-2\"><TITLE>Anna-panzió Tiszakécske");
     nk.document.write("</TITLE></HEAD>\n");
     nk.document.write("<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n");
     nk.document.write("<table width=\""+szelesseg+"\" height=\""+magassag+"\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n");
     nk.document.write("<tr>\n");
     nk.document.write("<td><img src=\""+kep+"\" width=\""+szelesseg+"\" height=\""+magassag+"\" hspace=\"0\" vspace=\"0\" border=\"0\"></td>\n");
     nk.document.write("</tr>\n");
     nk.document.write("</table>\n");
     nk.document.write("</BODY>\n");
     nk.document.write("</HTML>\n");
     nk.document.close();
     nk.focus();
}


