// opens an Email form in a separate window

function sendEmail(senderName, senderEmail, recipName, recipEmail, emailSubject, emailText)
{
	open("EmailForm.asp?senderName=" + senderName + "&senderEmail=" + senderEmail +
		  "&recipName=" + recipName + "&recipEmail=" + recipEmail +
		  "&emailSubject=" + emailSubject + "&emailText=" + emailText, 
		  "emailForm", 
		  "toolbar=no,location=no,directories=no,status=no," +
		  "menubar=no,resizable=no,width=400,height=350,screenX=200,screenY=250,top=200,left=250")
}