// JavaScript Document
//Author: Rodolfo A. Cerrada Jr., MCSD, MCDBA
//Date: May 18, 2004

var win_calendar = null;

function open_calendar(url)
{
    var parameters = "addressbar=no, statusbar=no, toolbar=no, scrollbars=no, width=270, height=300, top=80, left=300";
	win_calendar = window.open(url, "calendar", parameters);
	if(win_calendar != null) win_calendar.focus();
}

function accept_date(value)
{
	if(value != '')
	{
		window.opener.document.forms[0].PropertySearchControl1_WebDateChooser1.value = value;
	
		//-- close current window
		close_window();
	}

	else
	{
		alert('Unable to proceed. Please select a date.');
	}
}

function clear_date()
{
	
	window.opener.document.forms[0].PropertySearchControl1_WebDateChooser1.value = "";
	
	//-- close current window
	close_window();
}

function close_window()
{
		//-- close currnet window
	window.close();
	
	//-- set focust to parent window
	if(window.opener != null) window.opener.focus();

}

