<!--





// this code controls the messageboard, terms and conditions, and privacy policy pages







function openWindow(location) {

	if (screen.availHeight < 500 || screen.availWidth < 750) {

		window.alert("Sorry, you need a minimum of 800 x 600 resolution to view this page. Please, reset you monitor to a resolution of at least 800 x 600. -Mymethow Team");

	}

	

		else {

			var width = 750;

			var height = 600;

			var xPos = 

				((screen.availWidth - width)/2);

			var yPos = ((screen.availHeight - height)/2);

			var winAttr = 

				"width=" + width + ",height=" + height + 

				",left=" + xPos + ",top="  + yPos + 

				",resizable=yes" + ",scrollbars=yes" + ",toolbar=yes";

		
			windowPopUp = window.open(location,"PopUp",winAttr);

		}



	

		

		// move focus on the target

		windowPopUp.focus();

	}











//-->

