// JavaScript Document
function getDateStrWithDOW() {
var today = new Date();
var year = today.getFullYear();
var todayStr = (today.getMonth()+1) + "/" + today.getDate();
todayStr += "/" + year;
document.forms['resform'].DateIn.value = todayStr;
}
function showCalendar() {
if(document.getElementById('calendarfloat').style.display == 'none'){
	document.getElementById('calendarfloat').style.display = 'block';
	}
else{
	document.getElementById('calendarfloat').style.display = 'none';
	}
}

