var current = null;
function preSetDate(obj)
{
	current = obj;
	openWin('http://hartmanbrothers.com/js/viewcalendar.php?cmd=setDate&closewindow=1','calendarwindow',250, 300)
}
function setDate(Month,Day,Year)
{
		current.value = Month + '-' + Day + '-' + Year; 
}

