function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openProject(page)
{
	MM_openBrWindow(page,'ar','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=No,copyhistory=no,width=800,height=800')
}

function ShowHide(div)
{
	if (document.getElementById(div).style.display=="block")
	{
		document.getElementById(div).style.display="none";
	}
	else if (document.getElementById(div).style.display=="none")
	{
		document.getElementById(div).style.display="block";
	}
	
}