function Check_Terms(){
	// check has agreed
	if (document.form1.chkConfirm != undefined) {
	 	if (document.form1.chkConfirm.checked == false){
			alert("Please indicate if you have read and agreed to the Terms and Conditions of useage and the Disclaimer.");
		return false;
		}
	}
}


function DoConfirm(strMsg,strUrl){
if (confirm(strMsg))
window.location = strUrl;
}
