//kapat
function kapa() {  
window.close();
}

//Resim Büyüt Pop-Up Penceresi
function resimbuyut(x,y) {  
URL = "resimac.asp?id="+x+"&fld="+y ;
ad="ms"+x
window.open(URL,ad, "toolbar=no, scrollbars=no, resize=no, left=0, top=0");  
}

//Resim Boyutlu Explorer
var isNav4, isIE4;
if (parseInt(navigator.appVersion.charAt(0)) >= 4) {
isNav4 = (navigator.appName == "Netscape") ? 1 : 0;
isIE4 = (navigator.appName.indexOf("Microsoft") != -1) ? 1 : 0;
}
function fitWindowSize() {
if (isNav4) {
window.innerWidth = document.layers[0].document.images[0].width;
window.innerHeight = document.layers[0].document.images[0].height;
}
if (isIE4) {
window.resizeTo(800, 600);
width = (800 - (document.body.clientWidth - document.images[0].width)) ;
height = (600 - (document.body.clientHeight - document.images[0].height)) +2;
window.resizeTo(width, height);
}
}