//-----------------------------------------------------------------------------
// MakeUsYourHomePage() -- Sets the browser's HomePage property to
// www.mysanantonio.com
//-----------------------------------------------------------------------------
function MakeUsYourHomePage() {
	if((navigator.org == "microsoft") && (navigator.version >= 5.5)) {
		var obj = self.document.getElementById("frm_top");
		if(obj != null) {
			obj.style.behavior = "url(#default#homepage)";
			obj.setHomePage("www.mysanantonio.com");
		}
	}
	
	return false;
}

//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
function PopupWindow(url, title, settings) {
	window.open(url, title, settings);
}

function ShowHelp(){
	self.location.href = "http://www.mysanantonio.com/help/";
}

function ShowKeywordHelp(){
	var settings = "toolbar=no,location=no,directories=no,status=no,menubar=no"
		+ ",scrollbars=yes,resizable=no,width=350,height=350";
	var url = "http://www.mysanantonio.com/keyword/help.cfm";
	
	window.open(url, "helpWindow", settings);
}

function ShowFAQ(){
	var settings = "toolbar=no,location=no,directories=no,status=no,menubar=no"
		+ ",scrollbars=yes,resizable=yes,width=600,height=500";
	var url = "http://www.mysanantonio.com/help/faq/";

	window.open(url, "faqWindow", settings);
}

//-----------------------------------------------------------------------------
//	Added for use by dropbox menus (specifically for the date select in the
//	obituaries section).  -Jay Flaherty, Oct 21, 2003
//-----------------------------------------------------------------------------
function select_loadpage (select) {
	document.location = select.options[select.selectedIndex].value;
}


