<!--

var Win     = (navigator.userAgent.indexOf("Win")!=-1);
var Mac     = (navigator.userAgent.indexOf("mac")!=-1)  || (navigator.userAgent.indexOf("Mac")!=-1);
var OS2     = (navigator.userAgent.indexOf("os/2")!=-1) || (navigator.userAgent.indexOf("OS/2")!=-1);
var Linux   = (navigator.userAgent.indexOf("inux")!=-1);
var Other   = (!Win && !Mac && !OS2 && !Linux);

// Check for IE on PC
if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4) && (!Mac && !OS2 && !Other) && (document.all))
// If True - Allow Add Favorite AND Send Page To Friend
{
	//clean_url is created by templates/xss_handler.cfm, instead of using location.href
	var page_url = "http://"+clean_url;
	  document.write('<a href="javascript:MM_openBrWindow(\'/home/sendpageform.cfm?page='+page_url+'\',\'sendpage\',\'width=275,height=325,scrollbars\')"><img src="/images/action_items/bot_send_page.gif" width="157" height="16" BORDER="0" vspace="5"></a><br><a href="javascript:window.external.addFavorite(page_url,document.title);"><img src="/images/action_items/bot_add_page.gif" width="179" height="16" BORDER="0"></a>');		
		/* 
        document.write('<a href="javascript:MM_openBrWindow(\'/home/sendpageform.cfm?page='+location.href+'\',\'sendpage\',\'width=275,height=325,scrollbars\')"><img src="/images/action_items/bot_send_page.gif" width="157" height="16" BORDER="0" vspace="5"></a><br><a href="javascript:window.external.addFavorite(location.href,document.title);"><img src="/images/action_items/bot_add_page.gif" width="179" height="16" BORDER="0"></a>');
*/
}
else
// If Other - Just Add Send Page To Friend Functionality
{
var page_url = "http://"+clean_url;
document.write('<a href="javascript:MM_openBrWindow(\'/home/sendpageform.cfm?page='+page_url+'\',\'sendpage\',\'width=275,height=325,scrollbars\')"><img src="/images/action_items/bot_send_page.gif" width="157" height="16" BORDER="0"></a>');
/*
document.write('<a href="javascript:MM_openBrWindow(\'/home/sendpageform.cfm?page='+location.href+'\',\'sendpage\',\'width=275,height=325,scrollbars\')"><img src="/images/action_items/bot_send_page.gif" width="157" height="16" BORDER="0"></a>');
*/
}

//-->>>>