function signup(){
	if(document.getElementById("bco-name").value=="")
	{
	alert("Please enter your Company Name!");
	return false;
	}
	
	if(document.getElementById("bco-web").value=="")
	{
	alert("Please enter your Company Web Address!");
	return false;
	}
	
	if(document.getElementById("bcon-name").value=="")
	{
	alert("Please enter a Contact Name!");
	return false;
	}
	
	if(document.getElementById("bco-email").value=="")
	{
	alert("Please enter your Email Address!");
	return false;
	}
	
}