// Note:  pass 0 width or 0 height for 100% width or height
function OpenPopup(URL, width, height, top, left, scrollbars, toolbar) {
	window.self.name = "main";
	var now = new Date();
	var remote = window.open(URL,"popup" + now.getTime(),"width=" + width + ",height=" + height + ",top=" + top + ",left=" + left + ",scrollbars=" + scrollbars + ",toolbar=" + toolbar + ",location=0,directories=0,status=0,menubar=0,resizable=1");
	if(navigator.appVersion.indexOf("MSIE 3") < 0)
		remote.focus();
}

defaultStatus = "";