
/* Function to send an email to 'who' */

domaine= "fredcoppula";
ext = "com";

function mailTo( who, subject ) {
	urlCall = who + '@' + domaine + '.' + ext;
	if ( subject ) {
		urlCall += "?subject="+subject ;
	}
	self.location.href = 'mai'+'lto:'+ urlCall;
}

/* Function to send an email to the webmaster of the site */
function mailMaster() {	mailTo('webmaster','site fredcoppula'); }

