function setSelDate(dateValue, fldName) {

	frmElement = eval("window.opener.document.forms[1]." + fldName)
	frmElement.value = dateValue;
	window.opener.focus();
	window.close();
	return;
}
function selectDate(fldName,index,disPrevDate) 
{
    
	sWidth = screen.availWidth;
	sHeight = screen.availHeight;

	sTop = (sHeight - 300) / 2;
	sLeft = (sWidth - 300) / 2;
	window.open("selectDate.php?fldName=" + fldName + "&disPrevDate=" + disPrevDate , "Calendar", "width=300,height=193,top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=0,resizable=0");
	return;
}

function showCalendar(fldName) {
	sWidth = screen.availWidth;
	sHeight = screen.availHeight;

	sTop = (sHeight - 300) / 2;
	sLeft = (sWidth - 300) / 2;
	window.open("manageDocAvailability.php?fldName=" + fldName, "travelCalendar", "width=300,height=300,top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=0,resizable=0");
	return;
}
function showEventsCalendar(fldName,index) {
	sWidth = screen.availWidth;
	sHeight = screen.availHeight;

	sTop = (sHeight - 300) / 2;
	sLeft = (sWidth - 300) / 2;
	window.open("showEventCalendar.php?fldName=" + fldName, "Calendar", "width=300,height=300,top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=0,resizable=0");
	return;
}