<!-- Begin

var a=document.location.toString();		
x=a.length;							
y=a.lastIndexOf("l");				
y=y+2;	
var z=a.substring(y,x);
	if( z==""|| z >(rname.length-1)){
		z=0;
	}
	var recipientname=rname[z];
	var recipientaddress=user[z];	

function address(){
	document.write("<input type='hidden' value='"+recipientaddress+"' name='to'>");
	document.write("<input type='hidden' value='"+recipientname+"' name='toname'>");
}

function head(){
	document.write("Send Email to "+ recipientname);
}

function validate(theForm){
	if (theForm.fromname.value == ""){
		alert("Please include your name so we can reply to you.");
		theForm.fromname.focus();
		return (false);
	}
	reply=theForm.replyto.value;

	if (reply == ""){
		alert("Please include your email address so we can send you a response.");
		theForm.replyto.focus();
		return (false);
	}
	temp=reply.indexOf('@',0);

	if (temp<0){
		alert("There is a problem with your email address.  Please retype it so we can reply to you.");
		theForm.replyto.focus();
		return (false);
	}

	if (theForm.subject.value == "")
	{
	alert("Please include a subject for your message.");
	theForm.subject.focus();
	return (false);
	}

	msg=theForm.message.value
	msg=msg.toLowerCase()
	flag1=msg.indexOf("caglar");
	flag2=msg.indexOf("singletary")
	if ((flag1>-1) || (flag2>-1)){
		alert("This action is not permitted due to continued abuse.  If you feel like you are being harrassed, go to the Police Department and file a police report.  This email is considered harrassment and will no longer be tolerated.")
		return(false);
		window.close();
	}

	return (true);
}	//end function


// End -->