<!--

// cec javascript tools

/*	to use these tools...
	place the following line in the head section of the html document

	<script src=/javascripts/cecTools.js></script>
*/

function writeMailLink(thisUser, thisDomain, thisSubject)
{

/*	builds an email link on the fly, keeping it hidden from spiders
	use the following syntax...

	<A HREF="full path to current page" onMouseOver="this.href=writeMailLink ('username', 'domainname', 'mailsubject')">mail link text</A>
	
	note that placing the full path to the current page in the HREF attribute gives browsers without javascript enabled a graceful option
*/

return ("mail" + "to:" + thisUser + "@" + thisDomain + "?subject=" + thisSubject)
}

function writeFormRecipient(thisPublicFolder, thisDomain)
{
return (thisPublicFolder + "@" + thisDomain)
}

function openContactForm(thisHREF)
{
window.open(thisHREF,'window','width=600,height=480,resizable')
}

function openContactForm_Contact(thisHREF)
{
window.open(thisHREF,'window','width=600,height=600,resizable')
}

// cec javascript tools
// -->