winIEpass = ((navigator.appName.indexOf("Microsoft") != -1) &&
  (navigator.appVersion.indexOf("Windows") != -1)) &&
  (parseFloat(navigator.appVersion) >= 4) ? true : false;

NNpass = ((navigator.appName == "Netscape") &&
  (navigator.userAgent.indexOf("Mozilla") != -1) &&
  (parseFloat(navigator.appVersion) >= 4) &&
  (navigator.javaEnabled())) ? true : false;

  supportedBrowser = (winIEpass || NNpass) ? true : false;
var sSwf;
var lSwf;
function Flash_embedSWF(srcURL,swfbgColor,sW,sH) {
  var srcID = srcURL;
  srcURL = "flash/"+srcURL+".swf";
  var defaultColor = (document.bgColor != null) ? document.bgColor : "#ffffff";
  var bgcolor = (swfbgColor != null) ? swfbgColor : defaultColor;
  document.writeln(
    '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' +
	'codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"' +
    'ID="' + srcID + '" WIDTH="' + sW + '" HEIGHT="' + sH + '">' +
    '<PARAM NAME="movie" VALUE="' + srcURL + '">' +
    '<PARAM NAME="quality" VALUE="high">' +
    '<PARAM NAME="wmode" VALUE="transparent">'+
	'<PARAM NAME="opaque">'+
    '<PARAM NAME="autostart" VALUE="false">'+
    '<PARAM NAME="bgcolor" VALUE=' + bgcolor + '>' +
    '<embed src="' + srcURL + '" quality="high"' + 'bgcolor="' +
    bgcolor + '"' + 'width="' + sW + '" height="' + sH + '" wmode="transparent"' +
    'type="application/x-shockwave-flash" NAME="' + srcID + '"' +
 	'pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></OBJECT>');
}

function toggleFAQ(a){
    var diva = "p"+a;
    var eba = "ebtn"+a;
    var cba = "cbtn"+a;
    var dive=document.getElementById(diva);
    var ebe=document.getElementById(eba);
    var cbe=document.getElementById(cba);
    if(!dive)return true;
    if(dive.style.display=="none"){
        dive.style.display="inline";
        cbe.style.display="inline";
        ebe.style.display="none";
    } else {
        dive.style.display="none";
        cbe.style.display="none";
        ebe.style.display="inline";
    }
    return true;
}

function toggleHdr(a) {
    var e = document.getElementById(a);
    var esm = document.getElementById(a+"_sm");
    var ebe = document.getElementById(a+"btne");
    var ebc = document.getElementById(a+"btnc");
    if(!e) return true;
    if(e.style.display=="none"){
        e.style.display = "block";
        esm.style.display = "none";
        ebe.style.display = "none";
        ebc.style.display = "inline";
    } else {
        e.style.display = "none";
        esm.style.display = "block";
        ebe.style.display = "inline";
        ebc.style.display = "none";
    }
    return true;
}

function popUp(URL,h,w) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width="+w+",height="+h+"');");
}
