// JavaScript Document

//var input_id = 'checkin';
var input_id;
function show_calendar(the_input_id)
{ 
	input_id = the_input_id; // 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+'&input_id='+input_id, '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;
}
