﻿var popUp; 

function OpenCalendar(idname, postBack)
{
    Margine_Sinistro=((screen.width)-165)/2;
    Margine_Alto=((screen.height)-208)/2;
	popUp = window.open('tools/Calendar/Calendar.aspx?formname=' + document.forms[0].name + 
		'&id=' + idname + '&selected=' + document.forms[0].elements[idname].value + '&postBack=' + postBack, 
		'popupcal', 
		'width=165,height=208,left='+Margine_Sinistro+',top='+Margine_Alto);
	popUp.focus();
}

function SetDate(formName, id, newDate, postBack)
{
	eval('var theform = document.' + formName + ';');
	popUp.close();
	theform.elements[id].value = newDate;
	if (postBack)
		__doPostBack(id,'');
}		

