var ouputObj;

function getDate(thisObj, e) {
	x = e.screenX;
	y = e.screenY;
	outputObj = thisObj;
	window.open('calendar.html','calendar','width=250,height=230,left=' + x + ',top=' + y + '');
}

function returnDate(y,m,d) {	
	window.close('calendar');
	date = (m + 1) + "/" + d + "/" + y;
	window.opener.outputObj.value = date;
}
