﻿function mimic_email(emailname,emailserver,subject){

			//this simple script by a1javascripts.com
			//please leave credit and instructions intact
	

			//change the font face, color and size below
			document.write("<font face='Arial,Helvetica' size=-1>");
			document.write("<a href='mailto:" + emailname + "@" + emailserver + "?Subject=" + subject + "'>");
			document.write("<font color='000000'>");
			document.write(emailname + "@" + emailserver);
			document.write("</a>");
			document.write("</font>");
}
