function noSpam(en,dn,dm){
	document.write("<A href=\"ma"+"ilt"+"o:"+en+"@"+dn+"."+dm+"\" class=\"lnk\">"+en+"@"+dn+"."+dm+"</A>");
}
function emailTo(en,dn){
	document.write("<A href=\"ma"+"ilt"+"o:"+en+"@"+dn+"\" class=\"lnk\">Email</A>");
}
function toolPrint(){ window.print(); }
function toolAddFavorite(){
	bookmarkurl=location.href;
	bookmarktitle=document.title;
	if (document.all)
	window.external.AddFavorite(bookmarkurl,bookmarktitle);
	else if (window.sidebar) // firefox
	window.sidebar.addPanel(bookmarktitle, bookmarkurl, "");
}
var cntH1FontSize=13.5;
var cntBodyFontSize=9;
var cntBodyTopFontSize=10;
function toolLargerText(){
	cntBodyFontSize++;
	cntBodyTopFontSize++;
	document.getElementById('txtbodytop').style.fontSize=cntBodyTopFontSize+"pt";
	document.getElementById('txtbody').style.fontSize=cntBodyFontSize+"pt";
	cntH1FontSize+=1;
	document.getElementById('ContentH1').style.fontSize=cntH1FontSize+"pt";
}
function toolSmallerText(){
	cntBodyFontSize--;
	cntBodyTopFontSize--;
	document.getElementById('txtbodytop').style.fontSize=cntBodyTopFontSize+"pt";
	document.getElementById('txtbody').style.fontSize=cntBodyFontSize+"pt";
	cntH1FontSize-=1;
	document.getElementById('ContentH1').style.fontSize=cntH1FontSize+"pt";
}
function toolMailtoFriend(){
	mail_str = "mailto:?";
	mail_str += "body=" + "You really should have a look at the following link: \n"+document.location.href;
	location.href = mail_str;
}
var pageSoundStatus=1;
function toolSoundOnOff(){
	if(pageSoundStatus==0){
		// check if method if available 
		if (AudioPlayer.controls.isAvailable('Play'))
        // start playback
        AudioPlayer.controls.play();
		pageSoundStatus=1;
		document.getElementById('imgSoundCntrl').setAttribute("src", "./images/tool-6.gif");
		document.getElementById('lnkSoundCntrl').setAttribute("title", "Now playing (click to turn off)");
	}
	else{
		// check if method if available 
		if (AudioPlayer.controls.isAvailable('Stop'))
		// stop playback
		AudioPlayer.controls.stop();
		pageSoundStatus=0;
		document.getElementById('imgSoundCntrl').setAttribute("src", "./images/tool-60.gif");
		document.getElementById('lnkSoundCntrl').setAttribute("title", "Not playing now (click to turn on)");
	}
}


