var popUp; 

function OpenCalendar(idname, postBack)
{
	//alert(document.forms[0].name);
	//alert(document.getElementById(idname).value);
	/*popUp = window.open('Calendar.aspx?formname=' + document.forms[0].name + 
		'&id=' + idname + '&selected=' + document.forms[0].elements[idname].value + '&postBack=' + postBack, 
		'popupcal', 
		'width=165,height=228,left=200,top=250');
	*/
	popUp = window.open('Calendar.aspx?formname=' + document.forms[0].name + 
		'&id=' + idname + '&selected=' + document.getElementById(idname).value + '&postBack=' + postBack, 
		'popupcal', 
		'scrollbars=1,width=165,height=228,left=200,top=250');
}

function SetDate(formName, id, newDate, postBack)
{
	eval('var theform = document.' + formName + ';');
	popUp.close();
	//theform.elements[id].value = newDate;
	document.getElementById(id).value = newDate;
	if (postBack)
		__doPostBack(id,'');
}	

