// JavaScript Document
function checkform() //link form checker
{
		if ((document.linkform.email.value =="") || (document.linkform.theirurl.value =="") || (document.linkform.description.value =="") || (document.linkform.reciprocalurl.value ==""))
		{
				alert("You have not filled in the required fields");
				return false;
		}
		else if (!document.linkform.reciprocallink.checked)
		{
				alert("You must place a reciprocal link before we link to you");
				return false;
		}
}