function EnableActiveX(Obj)
{
	
	if (navigator.appName == "Microsoft Internet Explorer") 
	{
		
		po = Obj.parentNode;
		tags = po.innerHTML;
		po.removeChild(Obj);
		po.innerHTML = tags;
	}
}
function getURL(url, target) {
	if(target == '_blank') {
		// open a new window.
		window.open(url);
	} else {
		document.location = url;
	}
}
/*
 Footer functions:
 footerMOver(), footerMOut()
**/
function footerMOver(obj, color) {
	obj.style.cursor = "pointer";
	if(color == undefined) {
		obj.style.background = "#FFFFFF";
	} else {
		obj.style.background = color;
	}
}
function footerMOut(obj, color) {
	if(color == undefined) {
		obj.style.background = "#B9C5C9";
	} else {
		obj.style.background = color;
	}
}
