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

