function unScrambleEmail(eMail1,eMail2,statusText){
	var a,b,c;a=eMail1;b=eMail2.substring(0,eMail2.length-4);
	if(statusText!=""){e=" onMouseOver=\"top.status=\'"+statusText+
	"\'\;return true\;\" onMouseOut=\"top.status=\'\'\;return true\;\"";}else{e="";}
	document.write("<a href=\"mai"+"lto:"+a+"@"+b+"\""+e+">"+a+"@"+b+"</a>");}
	
function openNewWindow(url,width,height){
	newWindow = window.open(url, 'newWindow', 'width='+width+',height='+height+',toolbar=1,location=0,directories=0,status=0,menuBar=0, scrollBars=2,resizable=1');
	newWindow.focus();
}
function hide(i){
	div = document.getElementById("c"+i);
	sub = document.getElementById("s"+i);
	bod = document.getElementById("b"+i);
	if(div.style.display == "none"){
		div.style.display = "block";
		document.getElementById("p"+i).innerHTML = "&ndash;"
		sub.innerHTML = "";
	}
	else {
		document.getElementById("p"+i).innerHTML = "+"
		bodytext = bod.innerHTML;
		subject = left(bodytext,55);
		subject = left(subject,subject.lastIndexOf(" "));
		if(bodytext.length > 55){
			subject = subject + "...";
		}
		subject = subject + "<BR>";
		sub.innerHTML = subject;
		div.style.display = "none";
	}
}
