function linkTo(address) {
	window.location = address;
}
function openPopup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function validate() {
	var getTerms = document.getElementById('checkTerms');
	if(getTerms.checked == false) {
		alert("Please read and agree with the Terms & Conditions");
		return false;
	}
	document.FrmSignUp.action = "thankyou1.html";
	return true;
}