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

<!--
	function CheckFieldRequired()
	{
		var YourName  = document.SubmitForm.name.value;
		if(YourName == " " || YourName == "")
		{
			alert("Please enter your name!");
		    event.returnValue = false
			return;
		}
		var YourEmail  = document.SubmitForm.email.value;
		if(YourEmail == " " || YourEmail == "")
		{
			alert("Please enter your email address!");
		    event.returnValue = false
			return;
		}
		var WebsiteTitle = document.SubmitForm.title.value;		
		if(WebsiteTitle == " " || WebsiteTitle == "")
		{
			alert("Please check the Website Title field");
		    event.returnValue = false
			return;
		}

		var WebsiteUrl = document.SubmitForm.url.value;
		if(WebsiteUrl == " " || WebsiteUrl == "")
		{
			alert("Please check the Website Url field!");
		    event.returnValue = false
			return;
		}
		
		var ReciprocalLinkURL = document.SubmitForm.linkurl.value;
		if(ReciprocalLinkURL == " " || ReciprocalLinkURL == "")
		{
			alert("Please check the Reciprocal Link URL field!");
		    event.returnValue = false
			return;
		}
        var Description  = document.SubmitForm.description.value;
		if(Description == " " || Description == "")
		{
			alert("Please check the Description field!");
		    event.returnValue = false
			return;
		}
		var Enterthecodeshown  = document.SubmitForm.checknum.value;
		if(Enterthecodeshown == " " || Enterthecodeshown == "" || Enterthecodeshown!= "6211")
		{
			alert("Please check the Enter the code shown field!");
		    event.returnValue = false
			return;
		}

	}
//-->