<!--

var ClickCount = 0;
function checkDLForm(theForm) {

if (theForm.dead_link.value=="") {
alert("Please enter the link name or url");
theForm.dead_link.focus();
return false
}
if (theForm.dead_link.value.indexOf("@") >= 0) {
alert("The link name includes an illegal character");
return false;
}
if (theForm.name.value=="") {
alert("Please enter your name");
theForm.name.focus();
return false
}
if (theForm.name.value.indexOf("@") >= 0) {
alert("Your name includes an illegal character");
return false;
}
if (theForm.email.value=="") {
alert("Please enter your email address");
theForm.email.focus();
return false
}
if ( (theForm.reason[0].checked==false) && (theForm.reason[1].checked==false) ) {
alert("Please enter the reason");
return false
}

  if (ClickCount > 0)
  {   
    alert("You report is being processed. Please be patient.") ;
    return false;
  }

ClickCount = 1 ;
return true;
}

function openWin(file,x,y) {
var Page = window.open(file,"filepage","status=no,toolbar=no,location=no,menubar=no,resizable=yes,width="+x+",height="+y+",scrollbars=yes"); 
Page.focus();

}

//-->
