function getAge()
{
	return "24 "; 
}




function showBackgroundColorNavigationMenu(elmnt)
{
	var user_agent = navigator.userAgent;  

	if(user_agent.search(/Safari/) > 0)  {
	}

	else  {
		document.getElementById(elmnt).style.background="#F0FBFF";
	}
}

function hideBackgroundColorNavigationMenu(elmnt)
{
	var user_agent = navigator.userAgent;  

	if(user_agent.search(/Safari/) > 0)  {
	}

	else  {
		document.getElementById(elmnt).style.background="";
	}
}



function printBR()
{
	var user_agent = navigator.userAgent;  

	if(user_agent.search(/MSIE/) > 0)  {
	document.write("<br />");

	}

	else  {
		
	}
}