function mouseover(obj)
{
	obj.style.cursor="hand";
	obj.className='tabActive';
}

function mouseout(obj)
{
	obj.style.cursor='default';
	obj.className='tab';
}

function eventclick(strURL)
{
	window.open(strURL,'extsite','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=500,top=1,left=1');
}

function disclaimerclick()
{
	window.open('disclaimer.html','extsite','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=800,height=500,top=1,left=1');
}

function clickProject(str)
{
	if (document.all(str).style.display == 'none')
		document.all(str).style.display = 'inline';
	else
		document.all(str).style.display = 'none';
}
