<!-- Hide script code from older browsers

// Module variable to hold object reference for child window
var objWindow;

function OpenTerms()
{
	// Properties for Terms & Conditions window
	var strBars = "directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no";
	var strOpts = "scrollbars=yes,width=400,innerWidth=400,height=300,innerHeight=300,resizeable=no";
	var strScrn = "screenX=100,screenY=100,alwaysRaised=yes"
	var strFeatures = strBars + "," + strOpts + "," + strScrn

	// Open window if it doesn't exist or is closed, set focus otherwise
	if(objWindow == null || objWindow.closed) {
		objWindow = window.open("terms.htm","Terms",strFeatures);
	} else {
		objWindow.focus();
	}

	return true;
}
//-->
