// Simple Browser Detection
isIE5 = (document.all && document.getElementById) ? true : false; // IE5/6, IE5 Mac
isNS6 = (!document.all && document.getElementById) ? true : false; // NS6, Mozilla
isNS4 = (document.layers) ? true : false; // NS4
isIE = (document.all) ? true : false;
isIE4 = isIE && !isIE5; //IE4 Win
isMac = (navigator.appVersion.indexOf("Mac") != -1); // Mac Platform
isIE4M = isIE4 && isMac; //IE4 Mac

// Load appropriate Stylesheet
stylesNS4 = "css/fujitsu_NS.css";
stylesIE = "css/fujitsu.css";
if(isNS4){
   document.write("<link rel='stylesheet' href='" + stylesNS4 + "' type='text/css'>");
} else {
   document.write("<link rel='stylesheet' href='" + stylesIE + "' type='text/css'>");
}

// Window opener
function openWindow(url,winName,w,h,resize,scrollers){
       window.open(url,winName,"resizable="+resize+",scrollbars="+scrollers+",width="+w+"px,height="+h+"px");
}
