// JavaScript Document


function show_calendar()
{ 
	var input_id = 'date1'; // make same as on form
	var the_date = document.getElementById(input_id).value;
	var the_calendar_window = window.open('calendar_pop_up.php?the_date='+the_date, 'cal_win', 'width=260,height=300');
	the_calendar_window.focus();
	
}

function load_date(the_date)
{
	var input_id = 'date1'; // make same as on form
	window.opener.document.getElementById(input_id).value=the_date;
}
