/**
* Javascript used in the GREA250 Course
*
* @author: Dave Widmer
* @version: 1.0 2007-10-15
*/

/**
* Sends an email from a webpage without exposing the address to
* robots and spiders to cut down on spam
*
* @param: user		The email address before the @
* @param: domain	The email address after the @
*/
function sendMail(user,domain){
	address = "mailto:"+user+"@"+domain;
	window.location = address;
}