///////////////////////////////////////////////
//                 toggler!                  //
///////////////////////////////////////////////

function toggler(objRef, state) {
	objRef.style.backgroundColor = (1 == state) ? '#ffffff' : '#ffffff';
	return;
}

///////////////////////////////////////////////
//                   jump!                   //
///////////////////////////////////////////////

function jump(elmThis) {
    if (document.getElementById)
    {
        var sUrl = elmThis.value;

        if (sUrl != "")
        {
            document.location.href = sUrl;
        }
    }
}

///////////////////////////////////////////////
//                  gopopup!                  //
///////////////////////////////////////////////

function getpopup( theURL, winName, features ) {
	winHandle = window.open( theURL, winName, features );
}

///////////////////////////////////////////////
//                FlashVideo!                //
///////////////////////////////////////////////

function MM_CheckFlashVersion(reqVerStr,msg){
  with(navigator){
    var isIE  = (appVersion.indexOf("MSIE") != -1 && userAgent.indexOf("Opera") == -1);
    var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
    if (!isIE || !isWin){  
      var flashVer = -1;
      if (plugins && plugins.length > 0){
        var desc = plugins["Shockwave Flash"] ? plugins["Shockwave Flash"].description : "";
        desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave Flash 2.0"].description : desc;
        if (desc == "") flashVer = -1;
        else{
          var descArr = desc.split(" ");
          var tempArrMajor = descArr[2].split(".");
          var verMajor = tempArrMajor[0];
          var tempArrMinor = (descArr[3] != "") ? descArr[3].split("r") : descArr[4].split("r");
          var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] : 0;
          flashVer =  parseFloat(verMajor + "." + verMinor);
        }
      }
      // WebTV has Flash Player 4 or lower -- too low for video
      else if (userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 4.0;

      var verArr = reqVerStr.split(",");
      var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
  
      if (flashVer < reqVer){
        if (confirm(msg))
          window.location = "http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
      }
    }
  } 
}

function RunFlash(url,width,height) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+width+'" height="'+height+'">\n');
	document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
	document.write('<param name="menu" value="false" />\n');
	document.write('<param name="movie" value="'+url+'" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<embed allowScriptAccess="sameDomain" src="'+url+'" width="'+width+'" height="'+height+'" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"></embed>\n');
	document.write('</object>\n');
}

function RunFlashVideo(url,width,height) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+width+'" height="'+height+'" id="FLV">\n');
	document.write('<param name="movie" value="http://www.burr-roofside.com/PLAYER.swf" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="scale" value="noscale" />\n');
	document.write('<param name="bgcolor" value="#000000" />\n');
	document.write('<param name="FlashVars" value="&MM_ComponentVersion=1&skinName=CLEARSKIN&streamName='+url+'&autoPlay=true&autoRewind=false" />\n');
	document.write('<embed src="http://www.curleyplumbing.com/PLAYER.swf" flashvars="&MM_ComponentVersion=1&skinName=CLEARSKIN&streamName='+url+'&autoPlay=true&autoRewind=false" quality="high" scale="noscale" width="'+width+'" height="'+height+'" name="FLV" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
	document.write('</object>\n');
}