function emailForm(name,dom,subject){
	var eadd = name+'@'+dom;
	var thatstuff = 'mai';
	thatstuff = thatstuff+'lto';
	thatstuff = thatstuff+':';
	if (subject === undefined)
		subject = '';

	var the_link = thatstuff+eadd+'?subject='+subject;
	
	win = window.open(the_link,'_self');
}
