//ctl_email_script.js

function electronicmail(name,text){
	x="christmastraveleague";
	y=".com";
	str='<a href="mailto:' + name + '@' + x + y  
	str+= '">'
	if(text==""){
		str+= name + '@' + x + y
	}else{
		str+= text
	}
	str+='</a>'


	document.write(str);
};