var IEstring = "Bookmark Legal Virgins
Press [Ctrl + D]";
var NSstring = "Bookmark Legal Virgins
Press [Ctrl + D]";
var FFstring = "Bookmark Legal Virgins
Press [Ctrl + D]";
var OPstring = "Bookmark Legal Virgins
Press [Ctrl + T]";
var OTHstring = "Bookmark Legal Virgins";
var whichString = OTHstring ;
var agt = navigator.userAgent.toLowerCase();
var app = navigator.appName.toLowerCase();
var ieAgent = agt.indexOf('msie');
var nsAgent = app.indexOf('netscape');
var ffAgent = app.indexOf('firefox');
var opAgent = app.indexOf('opera');
if (ieAgent!= -1) { whichString = IEstring; } else if (nsAgent!= -1){ whichString = NSstring; } else if (ffAgent!= -1){ whichString = FFstring; } else if (opAgent!= -1){whichString = OPstring; }
document.write(whichString)