  function ablakkepminta(jpg,w,h,bg,bd,sor,nev){
  var params = 'toolbar=no,location=no,copyhistory=no, directories=0'+
               ',menubar=0,scrollbars=0,resizable=0,'+
               'width='+w+',height='+h+',left=1,top=1';
               
    var w = window.open('','',params);
  
	w.document.open();
	w.document.writeln("<html><head><title>pic.html</title>");

	w.document.writeln("<style type='text/css'>");

	w.document.writeln("body {");
	w.document.writeln("    font-family:  Tahoma, Verdana, Arial, Helvetica, sans-serif;");
	w.document.writeln("}");

	w.document.writeln(".t1   {width:39px; height:54px;    background-image: URL(imgnagy/01keretbalfent.gif);  background-position: left;   background-repeat: repeat-y; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;}");
	w.document.writeln(".t2   {height:54px; color:#050; font-size:18px; font-weight: 701; background-image: URL(imgnagy/01keretfent.gif);     background-position: top;    background-repeat: repeat-x; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;}");
	w.document.writeln(".t3   {width:39px; height:54px;   background-image: URL(imgnagy/01keretjobbfent.gif); background-position: right;  background-repeat: repeat-y; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;}");
	w.document.writeln(".baloldal   {width:39px; background-image: URL(imgnagy/01keretbal.gif);  background-position: left;   background-repeat: repeat-y; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;}");
	w.document.writeln(".jobboldal  {width:39px; background-image: URL(imgnagy/01keretjobb.gif); background-position: right;  background-repeat: repeat-y; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;}");
	w.document.writeln(".d1   {width:39px; height:54px;   background-image: URL(imgnagy/01keretballent.gif);  background-position: left;   background-repeat: repeat-y; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;}");
	w.document.writeln(".d2   {height:54px; color:#050; font-size:28px; font-weight: 701; background-image: URL(imgnagy/01keretlent.gif);     background-position: top;    background-repeat: repeat-x; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;}");
	w.document.writeln(".d3   {width:39px; height:54px;   background-image: URL(imgnagy/01keretjobblent.gif); background-position: right;  background-repeat: repeat-y; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;}");

	w.document.writeln(".table1 {");
	w.document.writeln("    width:"+w+"px;");
	w.document.writeln("    height:"+h+"px;");
	w.document.writeln("    text-align: center;");
	w.document.writeln("    vertical-align: middle;");
	w.document.writeln("}");

	w.document.writeln("img {");
	w.document.writeln("    border: 0px solid #"+bd+";");
	w.document.writeln("    cursor: pointer;");
	w.document.writeln("}");

	w.document.writeln("</style> ");
	w.document.writeln("</head>");

	w.document.writeln("");
	w.document.writeln("<body leftmargin=0 topmargin=0 marginwidth=0>");
	w.document.writeln("");
	w.document.writeln("<table class='table1' align='center' cellpadding='0' cellspacing='0' border=0>");
	w.document.writeln("<tr><td class='t1'></td><td class='t2'>"+sor+"</td><td class='t3'></td></tr>");

	w.document.writeln("<tr><td class='baloldal'></td><td>");	
	w.document.writeln("  <table align='center' border=0><tr><td ><img onclick='window.close();' src="+jpg+"></td></tr></table>");
	w.document.writeln("</td><td class='jobboldal'></td></tr>");

	w.document.writeln("<tr><td class='d1'></td><td class='d2'>"+nev+"</td><td class='d3'></td></tr>");
	w.document.writeln("</table>");
	w.document.writeln("");
	w.document.writeln("</BODY></HTML>");
	w.document.close();
  }
  
