	<!--
	function validate_required(field,label,newlabeltext,oldlabeltext) {
			
			if (field == "Northstar") {
				var buttons = document.getElementsByName(field);
				checked = false;
				for (i=0; i<buttons.length; i++) {
					var obj = buttons.item(i);
					if (obj.checked) {
						checked = true;
					}
				}
				
				if (checked == true) {
					document.getElementById(field).style.borderColor='#959595';	
				document.getElementById(label).innerHTML=oldlabeltext;
				document.getElementById(label).style.fontColor='#959595';
					return true;
				}
				else {
					document.getElementById(field).style.borderColor='#ff0000';								
				document.getElementById(label).innerHTML='<span style="color:#ff0000">'+newlabeltext+'</span>';
				document.getElementById(label).style.fontColor='#ff0000';
					return false;
				}
			}
			
			document.getElementById(label).innerhtml=newlabeltext;
			var value = document.getElementById(field).value;
			if (value==null||value==""||value==" "||value==0) {
				document.getElementById(field).style.borderColor='#ff0000';								
				document.getElementById(label).innerHTML='<span style="color:#ff0000">'+newlabeltext+'</span>';
				document.getElementById(label).style.fontColor='#ff0000';
				return false;
			} else {
				document.getElementById(field).style.borderColor='#959595';	
				document.getElementById(label).innerHTML=oldlabeltext;
				document.getElementById(label).style.fontColor='#959595';
				return true;
			}
	}
	
	function validate_form() {
		if (validate_required('ContactName','ContactName-label','You Must Enter Your Name','Name') && validate_required('EmailORPhone','EmailORPhone-label','You Must Enter a Phone Number or E-mail','Phone Number or E-mail (Which ever is more convenient for you!)') && validate_required('Plan','Plan-label','You Must Select the Type of Website Hosting in which you are interested','Type of Website Hosting in which you are interested') && validate_required('QuestionsComments','QuestionsComments-label','Please include any questions and/or comments','In the space below please describe your points of interest or special needs') && validate_required('Northstar','Northstar-label','Please Select Yes or No','Are you interested in Custom Web Design or Search Engine Optimization Services from Northstar?') ) {
			//if (validate_required('ContactName','ContactName-label','You Must Enter Your Name','Name')  ) {
			
			loadContact();
			//alert("loading");

			return true; 			
		} else {
			validate_required('ContactName','ContactName-label','You Must Enter Your Name','Name');
			validate_required('EmailORPhone','EmailORPhone-label','You Must Enter a Phone Number or E-mail','Phone Number or E-mail (Which ever is more convenient for you!)');
			validate_required('Plan','Plan-label','You Must Select the Type of Website Hosting in which you are interested','Type of Website Hosting in which you are interested');
			validate_required('Northstar','Northstar-label','Please Select Yes or No','Are you interested in Custom Web Design or Search Engine Optimization Services from Northstar?');
			validate_required('QuestionsComments','QuestionsComments-label','Please include any questions and/or comments','In the space below please describe your points of interest or special needs');
			
			return false;
		}
	}
	-->