function openWin( w, h ){
       wo=window.open("","exp","scrollbars=no,resizable=yes,toolbar=no,location=no,status=no,menubar=no,width="+w+",height="+h);
wo.resizeTo(w,h);
wo.focus();}


function openWin2( w, h ){
       wo=window.open("","exp","scrollbars=yes,resizable=yes,toolbar=no,location=no,status=no,menubar=no,width="+w+",height="+h);
wo.resizeTo(w,h);
wo.focus();}