var ua = navigator.userAgent.toLowerCase();
// browser name
this.isOpera = (ua.indexOf('opera') != -1);
this.isIE = (ua.indexOf('msie') != -1 && !this.isOpera && (ua.indexOf('webtv') == -1) );
this.isFirefox = (ua.indexOf('firefox') != -1);
this.isNS = (ua.indexOf('netscape') != -1);
this.isMac = (ua.indexOf('mac') != -1);
if (this.isFirefox == true) {
document.write('');
}
if (this.isNS == true) {
document.write('');
}
if (this.isOpera == true) {
document.write('');
}
if (this.isMac == true) {
if (this.isIE == true) {
document.write('');
}
else {
document.write('');
}
}