/****************************************************************************
Openwindows
**************************************************************************/
function PopUpWindow(WindowName, URL) { 
var width = 350; 
var height = 300; 
window.open(URL,WindowName,'menubar=no,toolbar=no,status=no,width='+width+',height='+height+',resizable=yes,scrollbars=no'); 
}
