function itemOnOver(obj, celula, cor)
{
    /*obj.style.color='#8e94c3'; */
	objCell = document.getElementById(celula);
	
	objCell.style.borderColor = cor;
	
    /*obj.style.backgroundColor='#eceaf1';*/
    obj.style.cursor='hand'; 
    obj.style.cursor='pointer';
}

function itemOutOver(obj, celula, cor)
{
    objCell = document.getElementById(celula);
	
	objCell.style.borderColor = cor;
}

function itemOnClick(destino)
{
    window.location = destino
}

function subCenterWindow(url, width, height, scr) {
  window.open(url, "", "status=1,scrollbars="+scr+",width="+width+",height="+height+",left="+(screen.width - width) / 2+",top="+(screen.height - height) / 2);
}
