function popUp(theURL,h,w,name)
{
var newWindow;
var s = "HEIGHT=" + h + ",WIDTH=" + w +
",resizable=0,scrollbars=0,menubar=0";
newWindow = window.open(theURL,name,s);
newWindow.focus();
}
