function setRsz(){
 var w = document.images[0].width ;
 var h = document.images[0].height ;
 window.resizeTo(w+20,h+65) ;
 window.focus() ;
}

function OpenWin(url,w,h) { 
windowfeatures = "width=" + w + ",height=" + h + ",scrollbars=0,resizable=0,"; 
open(url, "", windowfeatures); 
} 

function OpenWin2(url,w,h) { 
windowfeatures = "width=" + w + ",height=" + h + ",scrollbars=yes,resizable=0,"; 
open(url, "", windowfeatures); 
} 