function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function mypopup(url)
 {
	
	if (navigator.appName.substring(0,9)== "Microsoft")
	{
		window.open(url,'Chat','scrollbars=no,width=650,height=410');
	}else
	{
		window.open(url,'Chat','scrollbars=no,width=650,height=400');
	}

	
  
 } 

function menu( id)
{
	if(document.getElementById(id).style.display=='none')
	{
		document.getElementById(id).style.display='block'; 
	}
	else
	{
		document.getElementById(id).style.display='none'; 
		
	}
}
