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');
}
