// !Doc_Summary: pops up sendMail ASP form

function sendEmail(strURL) 
{
//*******************************************
//* author: 	Keawe Ng
//* editor: 	Kelly Berger; 1/2001; 
//*				kellyber 7.2002
//* Purpose: 	pops up sendMail ASP form, passing in variables 
//* usage:	
//*******************************************
	var winEmail
	var winEmailHeight //-- height of email window --
	var winEmailWidth //-- width of email window --
	strURL = '/common/mailform.asp?' + strURL;
	winEmailWidth = '650';
	winEmailHeight = '425';
	
	winEmail = window.open(strURL, "winEmail","top=150,left=150,scrollbars=yes,menubar=no,resizable=yes,width=" + winEmailWidth + ",height=" + winEmailHeight);
}