function mailIt(address, linkID, aSubject){
  address = address.replace(/...scoA.../g, "@");
  address = address.replace(/...scoD.../g,".");
	document.getElementById(linkID).href ="mailto:"+address+"?subject="+aSubject;
} 
 
function openPicture(name) { 
urlstring = name;
ProfileWindow = window.open(urlstring, "PWindow", "Resizable=yes, scrollbars=no, width=1030, height=760");
PWindow.focus();
} 
 
 
 function openContactinfo(name) {
urlstring = "contact_info.php?title=" + name;
ProfileWindow = window.open(urlstring, "ContactWindow", "Resizable=yes, scrollbars=no, width=425, height=300");
ContactWindow.focus();
}
 

	
	function showMenu(aval){
        document.getElementById(aval).style.visibility='visible';
     }
     function hideMenu(aval){
        document.getElementById(aval).style.visibility='hidden';
     }