/* General Open Window Function... 
Arguments: url, name, width (int), height (int), scrollbars (boolean 0 or 1)--
width, height, and scrollbars values are optional.*/
function openWin(url, name, w, h, s, top, left) {
	if (w) { w = "width=" + w; } else { w = "width=300" }
	if (h) { h = "height=" + h; } else { h = "height=400"}
	if (s) { s = "scrollbars=" + s } else { s = "scrollbars=0" }
	if (top) { top = "top=" + top; } else { top = "top=50"}
	if (left) { left = "left=" + left; } else { left = "left=50"}
	messagewindow = window.open(url, name, ""+w+","+h+","+s+",menubar=no,"+top+","+left+",resizable=yes");
	messagewindow.focus();
}

