var popUp; 

function OpenCalendar(idname, postBack)
{
	popUp = window.open('Calender.aspx?formname=' + document.forms[0].name + 
		'&id=' + idname + '&selected=' + document.forms[0].elements[idname].value + '&postBack=' + postBack, 
		'popupcal', 
		'width=165,height=230,left=350,top=350');
}

function SetDate(formName, id, newDate, postBack)
{
	eval('var theform = document.' + formName + ';');
	popUp.close();
	theform.elements[id].value = newDate;
	if (postBack)
		__doPostBack(id,'');
}

function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
};	
