/*
 * Url preview script 
 * powered by jQuery (http://www.jquery.com)
 * 
 * written by Alen Grakalic (http://cssglobe.com)
 * 
 * for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
 *
 */
 
if (top.location != self.location) {
top.location = self.location.href
}

var IEstring = "<font color=\"#CC0000\">Bookmark Me!</font><br><font size=\"-1\"><a href='javascript:window.external.addFavorite"
IEstring += "(location.href,document.title);' title='Add to Favorites'><font color=\"#000000\">Click Here!</font></font><\/a>" ;
var NSstring = "<font color=\"#CC0000\">Bookmark Me!</font><br><font size=\"-1\">Press [Ctrl + D]</font>";
var OPstring = "<font color=\"#CC0000\">Bookmark Me!</font><br><font size=\"-1\">Press [Ctrl + T]</font>";
var OTHstring = "<font color=\"#CC0000\">Bookmark Me!</font>";
var whichString = OTHstring ;
var agt = navigator.userAgent.toLowerCase();
var app = navigator.appName.toLowerCase();
var ieAgent = agt.indexOf('msie');
var nsAgent = app.indexOf('netscape');
var opAgent = app.indexOf('opera');


