			function send()
			{
				if(document.getElementById("txtWebsite").value  == ""){  
					alert("Enter Website name.");
					document.getElementById("txtWebsite").focus();
					return(false);
				}
				
				if(document.getElementById("txtDescribe").value  == ""){  
					alert("Enter Website description.");
					document.getElementById("txtDescribe").focus();
					return(false);
				}
				
				if(document.getElementById("txtContactPerson").value  == ""){  
					alert("Enter Contact Name.");
					document.getElementById("txtContactPerson").focus();
					return(false);
				}
				
				if(document.getElementById("txtContactEmail").value  == ""){  
					alert("Enter Contact Email.");
					document.getElementById("txtContactEmail").focus();
					return(false);
				}
				else if(!ValidateEmail(document.getElementById("txtContactEmail").value))
				{
					alert("Enter valid Email.");
					document.getElementById("txtContactEmail").focus();
					document.getElementById("txtContactEmail").select();
					return(false);
				}
				
				if(document.getElementById("txtTel").value  == ""){  
					alert("Enter Contact telephone.");
					document.getElementById("txtTel").focus();
					return(false);
				}
				
				if(document.getElementById("txtFax").value  == ""){  
					alert("Enter Contact fax.");
					document.getElementById("txtFax").focus();
					return(false);
				}
				
				if(document.getElementById("txtRefNm").value  == ""){  
					alert("Enter Referrer Name.");
					document.getElementById("txtRefNm").focus();
					return(false);
				}
				
				if(document.getElementById("txtCheque_at").value  == ""){  
					alert("Enter Cheque Payble.");
					document.getElementById("txtCheque_at").focus();
					return(false);
				}
				
				if(document.getElementById("txtCompanyNm").value  == ""){  
					alert("Enter company name.");
					document.getElementById("txtCompanyNm").focus();
					return(false);
				}
				
				if(document.getElementById("txtAdd1").value  == ""){  
					alert("Enter Address.");
					document.getElementById("txtAdd1").focus();
					return(false);
				}
				
				if(document.getElementById("txtCity").value  == ""){  
					alert("Enter City name.");
					document.getElementById("txtCity").focus();
					return(false);
				}

				if(document.getElementById("txtState").value  == ""){  
					alert("Enter state name.");
					document.getElementById("txtState").focus();
					return(false);
				}
				
				if(document.getElementById("txtZip").value  == ""){  
					alert("Enter Zip code.");
					document.getElementById("txtZip").focus();
					return(false);
				}
				
				if(document.getElementById("txtCountry").value  == ""){  
					alert("Enter country name.");
					document.getElementById("txtCountry").focus();
					return(false);
				}
				
				return(true);
			}
			
function Affiliates() {
	var myBars='directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=yes'
	var myOptions='width=680,height=675,resizeable=yes,alwaysRaised=yes,z-lock=yes,alwaysLowered=no';
	var myfeatures=myBars + ',' + myOptions;
		window.open("../HTML/affiliateProgram.htm","affiliate",myfeatures);
}
