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+="<a href=\"JavaScript:window.close();\"><img src='"+adres+"' style='margin-bottom:-30px' alt='Kapat' border='0'></a>";
  icerik+="</body></html>";
  ornekpenceresi=window.open('','',ozellikler);
  ornekpenceresi.document.write(icerik);
  return true;
}

function openWin( windowURL, windowName, windowFeatures ) {
  window.open( windowURL, windowName, windowFeatures ) ;
}