<!-- IE4, IE5, & IE6 have the document.all object, NS4 & NS6 do not -->

function enlarge(img, name, w, h) {
if (document.all) {w=w+20; h=h+30;} else {w=w+16; h=h+16;}
window.open(img,name,'width='+w+',height='+h+',copyhistory=no,directories=no,location=no,menubar=no,scrollbars=no,status=no,resizable=no,toolbar=no');
}

function myOpen(img, name, w, h) {
window.open(img,name,'width='+w+',height='+h+',screenX=0,screenY=0,top=0,left=0,copyhistory=no,directories=no,location=no,menubar=no,scrollbars=no,status=no,resizable=no,toolbar=no');
}


