/* function sendmail (linkname, title, who, where, subj)
	linkname is a reference to this
	title, who, where, subj form title <who@where>?subject=subj of a mailto: link
	the link is invoked & then temporay variable is set to null
	invoked as
	<A HREF="mailto:dummy" onclick = "javascript:sendmail (this, 'title', 'who', 'starprana.com', 'subj');">webmaster</A>
*/

var mailnk = "";
var eadd = "";
function sendmail (linkref, title, who, where, subj)
{
var s;
	eadd = "\"" + title + "\"" + "<" + who + "@" + where + ">" + "?subject=" + subj;	// + '">'
	mailnk = "mailto:" +eadd;
	// alert ("mailnk=" + mailnk);
	linkref.href = mailnk;
	setTimeout("cleareadd (linkref);", 5000);
	return true;	 
}

function setclass(lnk, newclass)
{
	// alert ("lnk.className=" + lnk.className);
	lnk.className = newclass;
}

function cleareadd (lnk)
{
	eadd = "";
	lnk.href = "";
	// alert ("eadd="+eadd);
}
