<!--
function AddBookmark(){
	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)
		bookmarker_hp = window.open(thePage,'bookmarker_','menubar,width=325,height=100,left=140,top=60');
	//bookmarker_hp.focus();
	}


if (window.name=='bookmarker_'){
	var pre_fix = document.images? '':'';
	document.write(pre_fix + '<P align="center">'
	+ '<strong>Use the Menu or Ctrl/Cmd-D Now <BR>to Bookmark the Page</strong><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>');
	}
//-->