<!--

function CheckName()
{
	var frm = document.frmdomains	
	
	if (frm.domain.value.length==0)
	{
		alert("You must enter a domain name before proceeding.");
		frm.domain.focus();
		return;
	}			
		
	frm.submit();
}

function CheckSendName()
{
	var frm = document.frmsenddomains	
	
	if (frm.contactname.value.length==0)
	{
		alert("You must enter a contact name before proceeding.");
		frm.contactname.focus();
		return;
	}
	
	if (frm.address1.value.length==0)
	{
		alert("You must enter your first line of address before proceeding.");
		frm.address1.focus();
		return;
	}
	
	if (frm.address3.value.length==0)
	{
		alert("You must enter your Town before proceeding.");
		frm.address3.focus();
		return;
	}
	
	if (frm.address4.value.length==0)
	{
		alert("You must enter your county before proceeding.");
		frm.address4.focus();
		return;
	}
	
	if (frm.postcode.value.length==0)
	{
		alert("You must enter a post code before proceeding.");
		frm.postcode.focus();
		return;
	}
		
	if (frm.contacttelno.value.length==0)
	{
		alert("You must enter a contact telno before proceeding.");
		frm.contacttelno.focus();
		return;
	}	
		
	frm.submit();
}

//-->