function openGalary(theURL) 
{  
window.open(theURL,'','width=700,height=500,top=0,left=200,RESIZABLE=1,SCROLLBARS=1');
}

function popupWindow(url) 
{
window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150');
}

function new_win(w,h)
{
//w1=window.open('','new_window','resizable=no,menubar=no,status=no,scrollbars=no,width=240,height=195');
//w1.close();
w1=window.open('','new_window','resizable=no,menubar=no,status=no,scrollbars=no,width='+w+',height='+h);
}



