
function AddToFaves_hp(){
	var is_4up = parseInt(navigator.appVersion);
	var is_mac   = navigator.userAgent.toLowerCase().indexOf("mac")!=-1;
	var is_ie   = navigator.userAgent.toLowerCase().indexOf("msie")!=-1;
	var thePage = location.href;
	if (thePage.lastIndexOf('#')!=-1)
		thePage = thePage.substring(0,thePage.lastIndexOf('#'));
	if (is_ie && is_4up && !is_mac) 
		window.external.AddFavorite(thePage,document.title);
	else if (is_ie || document.images)
		booker_hp = window.open(thePage,'booker_','menubar,width=325,height=100,left=140,top=60');
	//booker_hp.focus();
}

function writeBookmarkText() {
	if (window.name=='booker_'){
	var pre_fix = document.images? '<BR />':'';
	document.write(pre_fix + '<P align="center">'
	+ 'Use the menu or ctrl/cmd-D now <BR />to bookmark the page then <BR />'
	+ '<A href="javascript:window.close();">close this window</A></p>'
	+ '<P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P>');
	}
}

function submitSearch() {
	if (document.searchForm.term.value == "") {
		alert("Please enter a search term.");
		document.searchForm.term.focus();
		return false;
	} else {
		return true;
	}
}

function writeFlashText() {
	document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write (' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"');
	document.write (' width="350" height="75" id="fade">');
	document.write ('<param name="movie" value="../resources/banner_anim.swf" />');
	document.write ('<param name="quality" value="high" />');
	document.write ('<param name="bgcolor" value="#FFFFFF" />');
	document.write ('<embed src="../resources/banner_anim.swf" quality="high" bgcolor="#FFFFFF" ');
	document.write (' width="350" height="75" name="fade"');
	document.write (' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>');
}