var submitted = false;
function CheckSubmit(){
  if(submitted == false){
	submitted = true;
	return true;
  }else{
	alert("Your transaction is being submitted but the connection is taking longer than usual - please be patient.\nClick OK to continue the submission.");
	return false;
  }
}
function DoSubmit(theForm){
	if(theForm.cbRead.checked == false){
		alert("Ooops! Please check EULA and makr checkbox first.");
		return false;
	}
	theForm.business.value = "orders@easycmspro.net";
	return CheckSubmit();
}
function CallSite(dest, wname, width, height){
	window.open(dest, wname, "scrollbars=1,top=0,left=0,width="+width+",height="+height)
}