var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-738)/2 : 0;
TopPosition = (screen.height) ? (screen.height-650)/2 : 0;
h = parseInt(h);
//h+=30;
//settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=0, titlebar=no';
settings = 'height=660 ,width=738 ,top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=0, titlebar=no';
url = 'sh_img.php?src='+mypage;
win = window.open(url, "",settings)
}
