<!--
function validate(){
	var errormsg = "";
	if(document.myform.linkBackURL.value==""){
		errormsg+="Enter the URL of the page on your site that links back to us\n";
	}
	var decimal = /(^\d{1,3}\.\d{2}(?!.))/;
	if(document.myform.cost.value!=""){
		if(document.myform.cost.value.match(decimal) == null){
			errormsg+= "Cost must use US decimal format e.g. 12.95 \n";
		} 
	} 			
	if(document.myform.affiliate.value==""){
		errormsg+="Enter information for \"Web Hosts\" \n";
	}
	if(document.myform.category.value==""){
		errormsg+="Select a category for your Web Host \n";
	}
	if(document.myform.space.value==""){
		errormsg+="Enter a value for \"Web Space Allotment\"\n";
	}
	if(document.myform.address.value==""){
		errormsg+="Enter an example URL for \"Example User URL\"\n";
	}
	if(document.myform.statement.value==""){
		errormsg+="Enter a statement from web host \n";
	}
	if(document.myform.url.value==""){
		errormsg+="Enter your website URL \n";
	}
	
	
	if(errormsg!=""){
	 	alert(errormsg);
	 	return false;
	} else {
		return true;
	}

}
function show(divid){
	var divObj = document.getElementById(divid);
	divObj.style.display=(document.myform.category.value=="2"|document.myform.category.value=="Both")?'block':'none';
}

//-->