﻿//CALENDÁRIO
function OpenCalendar(idname, postBack)
{    
	Page='../../../Paginas/Calendario/Calendario/Calendario.aspx?formname=' + document.forms[0].name+"&id="+idname+"&selected=0&postBack="+postBack;	
	popUp = window.open(Page, 'popupcal', 'width=200,height=220,left=250,top=250,status=yes');	
	popUp.focus();
	return false;
}
function SetDate(formName, id, newDate, postBack)
{    
	eval('var theform = document.' + formName + ';');	
	theform.elements[id].value = newDate;
	if (postBack)
		__doPostBack(id,'');	
}
//FIM CALENDÁRIO


//EMPRESA

//FIM EMPRESA
