function pencere_ac(kod,adres,w,h) {
   sw=screen.availWidth; sh=screen.availHeight-20;
   if (w>sw) w=sw;
   if (h>sh) h=sh;
   if ( (w<sw) && (h<sh) ) ozellikler="scrollbars=no"; else ozellikler="scrollbars=yes"
   ozellikler+=",resizable=yes,toolbar=no,status=no,menubar=no,location=no";
   ozellikler+=",width="+w+",height="+h;
   icerik='<title>'+kod+'</title><BODY topmargin=0 leftmargin=0>';
   icerik+="<table height=100% align=center><tr><td valign=middle><a href=\"JavaScript:window.close();\"><img src='"+adres+"' alt='Kapat' border='0'></a></td></tr></table>";
   icerik+="</body></html>";
   ornekpenceresi=window.open('','',ozellikler);
   ornekpenceresi.document.write(icerik);
   return true;
}

function openWin( windowURL, windowName, windowFeatures ) {
   window.open( windowURL, windowName, windowFeatures ) ;
}