	//-->
	function nospam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
	}
	//-->
	
	//-->
	function expandcollapse (postid) {    
	whichpost = document.getElementById(postid);      
		if (whichpost.className=="postshown") {       
			whichpost.className="posthidden";    }    
		else {       
			whichpost.className="postshown";    
		} 
	} 
	//-->