function wopen(url,w,h){  
eval('opened=window.open("","none","top=100, left=100, width="+w+", height="+h+", resizable=0","replace=yes")');  
opened.document.open();  
opened.document.write('<body leftmargin=0 topmargin=0><img src="'+url+'"></body>');  
opened.document.close();  
} 
function opennewwindow(URL) {  
window.open(URL,'',"toolbar=no,width=720,height=410,status=no,scrollbars=no,resize=no,menubar=no")  
} 
