// JavaScript Document

function openWindow(windowurl, windowname, w, h) {
 newWin = window.open(windowurl, windowname,"width="+w+", height="+h+", scrollbars=yes, resizable=yes, menubar=no, history=no, statusbar=no");
}