
var sPersistID = "";

function highlight(obj, bool) {
		
	if(bool) obj.style.color = "red";
	else obj.style.color = "#dddddd";

} 

function highlight2(obj, bool) {

    if(bool && obj.id != sPersistID) {
    
        obj.style.backgroundColor = "gray";
        obj.style.color = "white";
    
    } else if(!bool && obj.id != sPersistID) {
    
        obj.style.backgroundColor = "white";
        obj.style.color = "black";
    
    }

}

function getPage(sUrl) {
	
	//var sTemp = sUrl;
	//if(sUrl == "new") sTemp = "What's New";
	if(sUrl == "Products") sUrl = "surveillance.aspx";
	else sUrl += ".aspx";
	
	// for mozilla
	IFContent.src = sUrl;
	
	//for IE
	window.IFContent.location = sUrl;
		
}

function persistColor(sID) {

    //for(i = 0; i < 9; i++) document.getElementById("tdLeft" + i).style.color = "black";
    sPersistID = sID;
    document.getElementById(sID).style.color = "red";

}
    