function OpenSendMailForm(sLanguage,sReceiver)
//purpose:	open the send mail form in a new window, no scroll
//			bar, sizable, and a fix size
//input:	sLanguage: language currently used
//			sReceiver: to whom the mail is sent
{
	
	var sUrl;	//the url of the send mail form
	var sStyle;	//the style to open window with
	sStyle='Scrollbars=yes,resizable=yes,top=0,height=425,left=100,width=400';
	if(sLanguage.toLowerCase()=='chinese')
	{	
		sUrl='http://www.fnfnet.com/app/sendmail/chnform.asp?txtReceiver=' + sReceiver;
		window.open(sUrl,'Mail',sStyle);
	}
	else	//open in English
	{
		sUrl='http://www.fnfnet.com/app/sendmail/engform.asp?txtReceiver='+sReceiver;
		window.open(sUrl,'Mail',sStyle);
	}
	
	return false;	//note: important!
}
