<!-- //script hider
function form_validator(theForm)
{
   
      if(theForm.firstname.value == "")
   {
   	alert("You must fill in your first name!");
	theForm.firstname.focus();
      return false;
   }

     if(theForm.siteurl.value == "")
        {
                alert("You must fill in the URL!");
				theForm.siteurl.focus();
                return false;
        }

		if(theForm.sitetitle.value == "")
        {
                alert("You must enter the site title!");
				theForm.sitetitle.focus();
                return false;
        }

        if(theForm.Description.value == "")
        {
                alert("You must fill in the Description!");
				theForm.Description.focus();
                return false;
        }

   if(theForm.email.value == "")
        {
                alert("You must enter your email address!");
				theForm.email.focus();
                return false;
        }
   if(theForm.linkurl.value == "")
        {
                alert("You must enter the URL containing our link!");
				theForm.linkurl.focus();
                return false;
        }
		
        return true;
}

function copyit(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
therange=tempval.createTextRange()
therange.execCommand("Copy")
}

// end script hiding -->