/* ############################################################################################
    No spam function.
	noSpamMail('<user>','<domain>','<end>'[,'<subject>'])
	The <subject line is an optional addition that will be put in to the subject of the email.
     For an example: myemail@place.com
     Would be: noSpamMail('myemail','place','com')
	 Use: <a href="javascript:noSpamMail('myemail','place','com')">Email Someone</a>
   ############################################################################################ */
function noSpamMail( p_name,p_domain,p_sufix,p_subject ) {
	if (p_subject != null) {
		location.href("mailto:" + p_name + "@" + p_domain + "." + p_sufix + "?subject=" + p_subject);
	} else {
		location.href("mailto:" + p_name + "@" + p_domain + "." + p_sufix);
	}
}

/* ################
    Window opener.
   ################ */
function openWindow(URLStr, left, top, width, height) {
	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,	scrollbar=no,resizable=no,copyhistory=no,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}