/* Obfuscates email while preserving the same appearance as a mailto: link
Copyright GraalSoft 2007
www.graalsoft.ro
 */
function printmail(login,dom){
    
		t='<a href="mailto:'+	login + String.fromCharCode(64)+ dom +'">'+login+String.fromCharCode(64)+dom+'</a>';
      
      document.write(t);		
      return true;
	}
function showDiv(divid){
 
document.getElementById(divid).style.display = 'block';
}
function hideDiv(divid){
document.getElementById(divid).style.display = 'none';
}
