//DISTINCTION of BROWSER
//MAC or WIN, IE or NS or SA or OP

function getOS()
{
var isle1 = navigator.userAgent.toLowerCase();
if (isle1.indexOf("mac") >=0) return "Macintosh";
if (isle1.indexOf("win") >=0) return "Windows";
return "";
}

function getBrowser()
{
var isle2 = navigator.appName.toLowerCase();
if (isle2.indexOf("netscape") >= 0) return"Netscape";
if (isle2.indexOf("explorer") >= 0) return"InternetExplorer";
if (isle2.indexOf("safari") >= 0) return"Safari";
if (isle2.indexOf("opera") >= 0) return"Opera";
return "";
}

os = getOS();
browser = getBrowser();
if (os == "Macintosh") fileName = "mac";
if (os == "Windows") fileName = "win";
if (browser == "Netscape") fileName +="ns07.css";
if (browser == "InternetExplorer") fileName +="ie07.css";
if (browser == "Safari") fileName +="sa07.css";
if (browser == "Opera") fileName +="op07.css";

document.write("<link rel='stylesheet' href='" + fileName + "' type='text/css'>");

