
/* Code to open a new window with a specified width and height */

function openWindow(URL,WindowName,width,height) 
{
myWindow = window.open(URL, WindowName,"width="+width+",height="+height+",scrollbars=0'");
}
