function events_calendar()
{
	window.open("http://ftp3.dns-systems.net/~mevmain/calendar/index.php","EventsCalendar","width=250,height=330,toolbar=no,menubar=no,location=no");
}

function change_parent(a,b,c)
{

}



startList = function() 
{
	if (document.all&&document.getElementById) 
	{
		navRoot = document.getElementById("nav1");
		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes*[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function() 
				{
					this.className+=" over";
				}
				node.onmouseout=function() 
				{
					this.className=this.className.replace(" over", "");
				}
			}
		}
		
		navRoot = document.getElementById("nav2");
		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes*[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function() 
				{
					this.className+=" over";
				}
				node.onmouseout=function() 
				{
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}


function dochat(u1,u2,n)
{
	window.open("http://ftp3.dns-systems.net/~mevmain/community/mymev/mevlive/chatbox.php?from=" + u1 + "&to=" + u2,"ChatBox" + n,"width=600,height=300,top=50,left=50,toolbar=no,menubar=no,location=no");
}

function dochatrequest(c_id)
{
	window.open("http://ftp3.dns-systems.net/~mevmain/community/mymev/mevlive/chatrequest.php?id=" + c_id,"ChatRequest","width=400,height=160,top=30,left=30,toolbar=no,menubar=no,location=no");
}



window.onload=startList;