function SendEmail(idx) {
	var txt;
	txt = "<HTML>";
	txt = txt + "<body onload='document.EmailForm.submit();'>";
	txt = txt + "<form method='Post' name='EmailForm' action='http://www.mybluetrain.com/meeting-contact.asp'>";
	txt = txt + "<input type='hidden' name='MeetingRec' id='MeetingRec' value='" + idx + "'>";
	txt = txt + "</form>";
	txt = txt + "</body>";
	txt = txt + "</html>";
	var objWindow = window.open('','',"top=25, left=25, height=550, width=700, location=0, menubar=0, scrollbars=1, resizable=1,status=1,titlebar=1,toolbar=0");
	if (objWindow == null || typeof(objWindow)=="undefined") {
		alert("The Contact Host window could not be opened.\nYour pop-up blocker disallowed the action.\n\nPlease change your pop-up blocker settings to\nallow pop-ups (for this website).");
		return;
	}
	var objDocument = objWindow.document;
	objDocument.write(txt);
	objDocument.close();
}
