// code to open pop-ups

function Start(page) {
	OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,location=yes,status=no,menubar=yes,directories=no,scrollbars=yes,resizable=yes,width=700,height=300");
}
function StartBig(page) {
	OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,location=yes,status=no,menubar=yes,directories=no,scrollbars=yes,resizable=yes,width=800,height=600");
}

function Close() {
	onClick=window.close
}

// code to open multiple links in same window

var newwin;

function launchwin(winurl,winname,winfeatures)
{
	//This launches a new window and then
	//focuses it if window.focus() is supported.
	newwin = window.open(winurl,winname,winfeatures);
	if(javascript_version > 1.0) {
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.focus();',250);
	}
}

