﻿

function onrollover(control)
{
//    control.style.color = "#8a8a8a";   
//    control.style.fontSize = 14;   
    control.style.textDecoration = "underline";   
	control.style.cursor = "pointer";
	control.style.cursor = "hand";
}

function onrollout(control)
{
//    control.style.color = "black";   
//    control.style.fontSize = 14;   
    control.style.textDecoration = "";   
	control.style.cursor = "default";
}

function hideBarForFF()
{

	if (navigator.userAgent.indexOf("Firefox")!=-1)
	{
		var bar = document.getElementById("bar");
		
		if (bar)
			bar.style.display="none";
	}
}



