

function m_over(x) 
{
	if(x == null)
		x= window;
	x.event.srcElement.style.background="#003399";
	x.event.srcElement.style.color = "yellow";
	x.event.srcElement.style.cursor = "hand";
}

function m_out(x) 
{
	if(x == null)
		x= window;
	x.event.srcElement.style.background="#0066CC";
	x.event.srcElement.style.color = "white";
	x.event.srcElement.style.cursor = "default";
}

function m_click(dest) 
{

	window.navigate(dest);
}


function n_over(x) 
{
	if(x == null)
		x= window;
	x.event.srcElement.style.background="#EE8239";
	x.event.srcElement.style.color = "#006699";
	x.event.srcElement.style.cursor = "hand";
}

function n_out(x) 
{
	if(x == null)
		x= window;
	x.event.srcElement.style.background="#f5deb3";
	x.event.srcElement.style.color = "sienna";
	x.event.srcElement.style.cursor = "default";
}


function handleMouseover() {
	eSrc = window.event.srcElement;
	eSrcTag=eSrc.tagName.toUpperCase();
	if (eSrcTag == "A") eSrc.style.textDecoration = "underline";
}

function handleMouseout() {
	eSrc = window.event.srcElement;
	eSrcTag=eSrc.tagName.toUpperCase();
	if (eSrcTag == "A") eSrc.style.textDecoration = "";
}
function openDialog(URL)
{
	return window.open(URL,"test","resizable=yes,status=no,toolbar=no,location=no");
}
document.onmouseover=handleMouseover;
document.onmouseout=handleMouseout;

window.onload=window_onload;

function window_onload()
{
	var title = top.document.all("title");
	
	if (title != null)
	{
		title.filters[0].Apply(); 
		title.innerHTML = document.title; 
		title.filters[0].Play(); 
	}	
}

function popUp(url)
{
   window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,top=30,left=280,width=650,height=500');
}
