// JavaScript Document
function usepolicy(){
	var url;var newWindow;url = "http://www.ceu-hours.com/policy.txt";
	var w=950;
	var h=500;myleft=(screen.width)?(screen.width-w)/2:100;
	mytop=(screen.height)?(screen.height-h)/2:100;
	newWindow = window.open(url,"popWin", "width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",resizable=yes,scrollbars=yes,location=no,status=no,menubar=no,toolbar=no;");
	newWindow.focus();
	}

function privacypolicy(){
	var url;var newWindow;
	url = "http://www.ceu-hours.com/privacy.txt";
	var w=950;
	var h=500;
	myleft=(screen.width)?(screen.width-w)/2:100;
	mytop=(screen.height)?(screen.height-h)/2:100;
	newWindow = window.open(url,"popWin", "width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",resizable=yes,scrollbars=yes,location=no,status=no,menubar=no,toolbar=no;");
	newWindow.focus();
	}