/*-----------------------CONSTANTS-------------------------*/
var VirtualRoot = "/home";
var StringEmpty = "";


/*-----------------------CONSTANTS-------------------------*/
function CloseDialog(returnValue)
{
	window.returnValue = returnValue;
	window.close();
}
/*-----------------------CALENDAR--------------------------*/

function calendarShow(selectedDate, returnFormat){
	var newDate = window.showModalDialog(VirtualRoot + "/Common/dates/dateDialogFramingPage.aspx?selecteddate=" + selectedDate + "&returnformat=" + returnFormat, StringEmpty, "dialogWidth: 208px;dialogHeight: 177px;status: no;help: no;");
	return (typeof(newDate) == "undefined") ? selectedDate : newDate;

	//CalendarFrame.location.href = VirtualRoot + "/Common/dates/dateDialog.aspx?selecteddate=" + selectedDate + "&returnformat=" + returnFormat;
	//alert(CalendarFrame.document.body.outerHTML);

	//return (typeof(newDate) == "undefined") ? selectedDate : newDate;
}

function calendarInit(){
	CalendarFrame.__doPostBack = new Function("calendarClick");
}

function calendarClick(){

}

/*-----------------------CALENDAR--------------------------*/


