var popUp;

function CalendarPopUp(formName, varName)
{
	var w = 300;
	var h = 300;
	var winLeft = (screen.width - w) / 2;
	var winUp = (screen.height - h) / 2;
	var features = "width=" + w + ",height=" + h + ",status=no,left=" + winLeft + ",top=" + winUp;
	popUp = window.open("/calendar/Calendar.aspx?ParentForm=" + formName + "&ParentVariable=" + varName, "_blank", features);
	
}


function SelectDateOK(formName, parentVar, childValue, postBack)
{
	eval('var theform = document.' + formName + ';');
	popUp.close();
	theform.elements[parentVar].value = childValue ;
	//if (postBack)
	//	__doPostBack('','');
	
}


function CloseWindow()
{
	self.close();
}
