function CheckForm( theform )
{
	var bMissingFields = false;
	var strFields = "";
	
	if( theform.name_from.value == '' ){
		bMissingFields = true;
		strFields += "    Contact Name\n";
	}
		if( theform.email_from.value == '' ){
		bMissingFields = true;
		strFields += "    Email Address\n";
	}
	if( theform.url.value == '' ){
		bMissingFields = true;
		strFields += "    Exact URL for Linking\n";
	}
		if( theform.returnlink.value == '' ){
		bMissingFields = true;
		strFields += "    URL of Our Link on your page\n";
	}
	if( theform.description.value == '' ){
		bMissingFields = true;
		strFields += "    Site Description\n";
	}


	if( bMissingFields ) {
		alert( "I'm sorry, but you must provide the following field(s) before continuing:\n\n" + strFields );
		return false;
	}
	
	return true;
}
