	<!--
	var date_1 = new Date();
	
	function showCalendar(fieldName,minYear,maxYear,format){
	    if (minYear=="") minYear="1950";
	    if (maxYear=="") maxYear="2010";
	    if (format=="") format="1";
		calWindow = window.open('datepicker/datepicker.html?fieldName='+fieldName+'&minYear='+minYear+'&maxYear='+maxYear+'&format='+format, 'calWindow', 'toolbar=no,location=no,scrollbars=no,status=no,resizable=no,width=190,height=210');
		calWindow.focus();
	    if (calWindow.opener == null) calWindow.opener = self;
	}

	//-->
