﻿function showLeitos(Pagina, Tipo)
{
	var largura = 480;
	var altura = 400;
	var posX = (screen.availWidth-largura)/2;
	var posY = (screen.availHeight-altura)/2;		

	newWindow  = window.open(Pagina + '?Tipo=' + Tipo,'MostraLeitos','status=no,resizable=no,scrollbars=yes,menubar=no,width='+largura+',height='+altura+',left='+posX+',top='+posY);
	newWindow.focus();
}

function tabelaLinhasAlternadas() {
    $("table").each(function(index, id) {
        $(this).find('tr:even').css("background", "#EEE");
    });
}