// JavaScript Document
function detectBrowser()
{
var browser=navigator.appName;
var b_version=navigator.appVersion;
var version=parseFloat(b_version);
if ((browser=="Microsoft Internet Explorer"))
{
window.open("win1.html","Window1",
"menubar=no,width=425,height=50,toolbar=no");
//document.write('<div style=" width: 800px; text-align: center">');
//document.write("We're sorry. Internet Explorer cannot accurately display site content. Please switch to ");
//document.write('<a href="http://www.mozilla.com/en-US/firefox/all.html">');
//document.write("Firefox");
//document.write('</a>');
//document.write(" or other non-Microsoft browser.");
//document.write('</div>');

}
}
