
// JavaScript Document
<!--
 function getFav() {
     var t = 'Link Disguiser';
     var h = f = '';
     var l = document.location;
     var url = l ? l.protocol + '//' + l.host + '/' : 'http://linkdisguiser.com/';	 
	 if	(window.sidebar && window.sidebar.addPanel) f = '<a href="javascript:alert(\'Firefox users: This link will open in your Sidebar rather than the main page! \\n To prevent this please right click the link and choose \\\'Properties\\\' and then uncheck the box marked: \\\'Load This Bookmark in the Sidebar\\\' \\nSorry about this, but it is unavoidable with Firefox.\');window.sidebar.addPanel(\'' + t + '\',\'' + url + '\',\'\')">bookmark site<\/a>';
	 

else if (window.opera && window.print) f = '<a href="' + url + '" title="' + t + '" rel="sidebar">bookmark site<\/a>';
     else if (window.external && (navigator.platform == 'Win32' || (window.ScriptEngine && ScriptEngine().indexOf('InScript') + 1))) f = '<a href="javascript:window.external.AddFavorite(\'' + url + '\',\'' + t + '\')">bookmark site' + ((navigator.platform == 'Win32') ? '' : '') + '<\/a>';
     return h + (((h!='') && (f!='')) ? ' / ' : '') + f;
} 
//-->