function nw(url,w,h){
w1=w+20; h1=h+20;
str='resizable=1,width='+w1+',height='+h1+',left=10,top=10,status=0,menubar=0,scrollbars=0';
win=window.open("about:blank","_blank",str);
win.document.open("text/html", "replace");
win.document.writeln("<html><body bgcolor=#EAE4D4><center>");
win.document.writeln("<img src="+url+" width="+w+" height="+h+">");
win.document.writeln("</center></body></html>")
win.document.close();
}
function nwp(url,w,h){
w1=1000; h1=h+50;
str='resizable=1,width='+w1+',height='+h1+',left=10,top=10,status=0,menubar=0,scrollbars=1';
win=window.open("about:blank","_blank",str);
win.document.open("text/html", "replace");
win.document.writeln("<html><body bgcolor=#EAE4D4><center>");
win.document.writeln("<img src="+url+" width="+w+" height="+h+">");
win.document.writeln("</center></body></html>");
win.document.close();
}


