/* -- Executa swf - Início -- */

//set player version here
var MM_contentVersion = 7;

//set sub version here
var release = "6,0,67,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 do Macromedia Flash Player '+MM_contentVersion+' para visualizar partes desre 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");

  }
}

/* -- Executa swf - FIM -- */

/* -- popup - INICIO -- */

/*
Auto center window script- Eric King (http://redrival.com/eak/index.shtml)
Permission granted to Dynamic Drive to feature script in archive
For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

var win = null;
function NewWindow(mypage,myname,w,h,scroll,resi){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+resi+''
win = window.open(mypage,myname,settings)
}


/* -- popup - FIM -- */

/* -- Muda Fonte - INICIO -- */
tam = 11;
function changeType(tipo){
	if (tipo=="more") {
		if(tam<16) tam+=1;
		//createCookie('fonte',tam,365);
	} else {
		if(tam>10) tam-=1;
		//createCookie('fonte',tam,365);
	}
	document.getElementById('mudaFonte').style.fontSize = tam+'px';
	// document.getElementById('mudaFoto').style.fontSize = tam+'px';
}

/* -- Muda Fonte - FIM -- */

/* -- Abas - INICIO -- */

	function stAba(conteudo)
	{
		this.conteudo = conteudo;
	}

	var arAbas = new Array();
	arAbas[0] = new stAba('evabas');
	arAbas[1] = new stAba('evabas1');
	arAbas[2] = new stAba('evabas2');
	arAbas[3] = new stAba('evabas3');
	arAbas[4] = new stAba('evabas4');
	arAbas[5] = new stAba('evabas5');
	arAbas[6] = new stAba('evabas6');
	arAbas[7] = new stAba('evabas7');
	arAbas[8] = new stAba('evabas8');
	arAbas[9] = new stAba('evabas9');
	arAbas[10] = new stAba('evabas10');
	arAbas[11] = new stAba('evabas11');
	arAbas[12] = new stAba('evabas12');
	arAbas[13] = new stAba('evabas13');
	arAbas[14] = new stAba('evabas14');
	arAbas[15] = new stAba('evabas15');
	arAbas[16] = new stAba('evabas16');
	arAbas[17] = new stAba('evabas17');
	arAbas[18] = new stAba('evabas18');

	function AlternarAbas(conteudo)
	{
		for (i=0;i<arAbas.length;i++)
		{
		c = document.getElementById(arAbas[i].conteudo);
		c.style.display = 'none';
		}
		c = document.getElementById(conteudo);
		c.style.display = '';
	}

/* -- Abas - FIM -- */


function EnviarRecado( page, opc ) {

	if(document.getElementById("recados").checked){

		if ( opc == "deletar" ) {
			conf = confirm("Deseja realmente excluir?");
		} else {
			conf = true;
		}
			
		if (conf == true ) {
			document.form.action = "./?p="+page+"&op="+opc;
			document.form.target = "";
			document.form.submit();
		}
		return true;
	}else{
		alert("Marque pelo menos uma opção!");
		return false;
		
	}
}