﻿// JavaScript Document
//Define Titulo
document.title = 'MasterCabo - Tecnologia levando emoção.';

// Body onload utility (supports multiple onload functions)
var gSafeOnload = new Array();
function SafeAddOnload(f)
{
    isMac = (navigator.appVersion.indexOf("Mac")!=-1) ? true : false;
    IEmac = ((document.all)&&(isMac)) ? true : false;
    IE4 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 4.")!=-1)) ? true : false;
    if (IEmac && IE4)  // IE 4.5 blows out on testing window.onload
    {
        window.onload = SafeOnload;
        gSafeOnload[gSafeOnload.length] = f;
    }
    else if  (window.onload)
    {
        if (window.onload != SafeOnload)
        {
            gSafeOnload[0] = window.onload;
            window.onload = SafeOnload;
        }        
        gSafeOnload[gSafeOnload.length] = f;
    }
    else
        window.onload = f;
}
function SafeOnload()
{
    for (var i=0;i<gSafeOnload.length;i++)
        gSafeOnload[i]();
}

//Funcao que define parametros para Titulo e Menu e insere o flash na página
<!-- 
//JavaScript Flash detection and deployment 
/* -- 1. Player Version detection -- */ 

//set player version here 
var MM_contentVersion = 8; 

//set sub version here 
var release = "8,0,0,0"; 

//check for flash player 
var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0; 
if ( plugin ) { 
var words = navigator.plugins["Shockwave Flash"].description.split(" "); 
for (var i = 0; i < words.length; ++i) 
{ 
if (isNaN(parseInt(words[i]))) 
continue; 
var MM_PluginVersion = words[i]; 
} 
var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion; 
} 
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 
&& (navigator.appVersion.indexOf("Win") != -1)) { 
document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n'); //FS hide this from IE4.5 Mac by splitting the tag 
document.write('on error resume next \n'); 
document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion)))\n'); 
document.write('</SCR' + 'IPT\> \n'); 
} 

/* -- 2. Deployment function -- */ 

function writeFlash(swf,flashVarString,w,h,bgcolor,menu,mode,q,id){
	
	
if ( MM_FlashCanPlay ) { 
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ' 
+'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+release+'" ' 
+'width="'+w+'" height="'+h+'" id="'+id+'" align="">' 
+'<param name="movie" value="'+swf+'">' 
+'<param name="menu" value="'+menu+'"> ' 
+'<param name="quality" value="'+q+'"> ' 
+'<param name="wmode" value="'+mode+'"> ' 
+'<param name="bgcolor" value="'+bgcolor+'"> ' 
+'<param name="flashvars" value="'+flashVarString+'"> ' 
+'<embed src="'+swf+'" flashvars="'+flashVarString+'" menu="'+menu+'" quality="'+q+'" wmode="'+mode+'" ' 
+' bgcolor="'+bgcolor+'" width="'+w+'" height="'+h+'" name="'+swf+'" ' 
+' align="" type="application/x-shockwave-flash" ' 
+' pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object> '); 
} else { 
//behaviour for if there is no flash player 
document.write('você precisa instalar o Flash player '+MM_contentVersion+' or later to use this site. '); 
document.write('<em><a href="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" target="_blank">'); 
document.write('Clique aqui para instalar.</a></em>'); 
//this can be replaced by anything you want 
//e.g. document.location.replace("text.html"); 

} 
} 
/////////////////////////////////////////////////////
//script banners concurso cultural
function seqSlideShow(t,l) {

  t = (t*1000)
  x=document.getElementById("ImagemFundo");
  j=l;
  if (j==list.length) j=0;
  
  	for (var cont = 1; cont <= list.length; cont++)
  		 {
   			document.getElementById("Bt"+cont).src = "/Imgs/btoff.gif"
   		 }
   
   document.getElementById("Bt"+(j+1)).src = "/Imgs/bton.gif"
	x.style.backgroundImage = "url('"+list[j]+"')"
	document.getElementById("linkGeral").href = links[j];
	document.getElementById("linkGeral").target = targets[j];
	j++;
   clearTimeout(contador) 
   contador = null;
   contador = setTimeout("seqSlideShow("+(t/1000)+","+j+")",t);
  }
