function $(s){
	return document.getElementById(s);
}

function swapColor(count, action, oldColor) {
    if (action == 1){ 
        document.getElementById("table" + count).style.background = "#F2F2F2";
    } else { 
        document.getElementById("table" + count).style.background = oldColor;
    }
}

function redir(url){
    window.location = url;
}

function abreJanela(pagina,x,y)
{
	window.open(pagina,'destaque','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+x+',height='+y)
}