function Toggle() 
{
	
	if( document.getElementById("webmail").style.display == 'none') 
	{

	document.getElementById("webmail").style.display=''; 
	//document.images["jsbutton"].src= "http://www.cfni.org/images/email_on.png"; 

	} else {

	document.getElementById("webmail").style.display='none'; 
	//document.images["jsbutton"].src= "http://www.cfni.org/images/email_off.png"; 
	}

}