<!--
// Function To Load The Calendar Window.
function ShowCalendar(FormName, FieldName)
{
	window.open("http://www.usahotelguide.us/calendar.cfm?FormName=" + FormName + "&FieldName=" + FieldName, "CalendarWindow", "width=200,height=125");
}

function bookmark(url, description)
{
	netscape="Netscape User's hit CTRL+D to add a bookmark to this site."
	if (navigator.appName=='Microsoft Internet Explorer')
		{
			window.external.AddFavorite(url, description);
		}
	else if (navigator.appName=='Netscape')
		{
			alert(netscape);
		}
} 
//-->