function mouseOver(image){	var imageSrc = image.src;	imageSrc = imageSrc.substring(0, imageSrc.length - 4);	var index = imageSrc.indexOf('_rollover');	if (index == -1)	{	 image.src = imageSrc + '_rollover.gif';	}}function mouseOut(image){	var imageSrc = image.src;	imageSrc = imageSrc.substring(0, imageSrc.length - 4);	var index = imageSrc.indexOf('_rollover');	if (index > 0)	{		image.src = imageSrc.substring(0, index) + '.gif';	}}function edress(edress, subject, body){	var re= /_at_/gi;	edress = edress.replace(re,'@');	var re= /_dot_/gi;	edress = edress.replace(re,'.');	var the_link="mai" + "lto" +":"+edress+"?subject=" + subject +"&body=" + body ;	//window.location=the_link;	document.write("<a href=\"" + the_link + "\">" + edress + "</a>");}
