<!--

function popup(page,h,w) {
windowprops = "height="+h+",width="+w+",location=no," + "scrollbars=no,menubars=no,toolbars=no,resizable=no";
window.open(page, "page_title", windowprops); }

function toggleview(id1,id2)
{
	if(document.getElementById(id1).style.display=="none")
	{
	document.getElementById(id1).style.display="";
	//document.getElementById(id2).style.display="none";
	}
	else
	{
	document.getElementById(id1).style.display="none";
	}	

}
//-->