<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

<!--
	function CheckFieldRequired()
	{
		var WebsiteTitle = document.SubmitForm.websitetitle.value;		
		if(WebsiteTitle == "" || WebsiteTitle == "Your Company Name")
		{
			alert("Please check the Website Title field");
		    event.returnValue = false
			return;
		}

		var WebsiteURL = document.SubmitForm.websiteurl.value;
		if(WebsiteURL == "" || WebsiteURL == "http://")
		{
			alert("Please check the Website URL field!");
		    event.returnValue = false
			return;
		}
		
		var Email  = document.SubmitForm.email.value;
		if(Email == "")
		{
			alert("Please enter your email address!");
		    event.returnValue = false
			return;
		}	
		
		var ReciprocalUrl = document.SubmitForm.reciprocalurl.value;
		if(ReciprocalUrl == "" || ReciprocalUrl == "http://")
		{
			alert("Please check the Reciprocal Link URL field!");
		    event.returnValue = false
			return;
		}
		var WebsiteDescription  = document.SubmitForm.websitedescription.value;
		if(WebsiteDescription == "")
		{
			alert("Please describe your website, products, or your company.");
		    event.returnValue = false
			return;
		}	
	}

//-->

