function limpaBusca(campo)
{
    campo.value = "";
}

function submitMe()
{
    var doc = document.forms[0];

    if(doc.arg_busca.value == "" || doc.arg_busca.value == "BUSCA")
    {
        alert("Digite um argumento válido para busca!!");
    }
    else
    {
        doc.submit();
    }

}

function enviaCartao(codigo)
{
    window.open('envia_cartao.php?id_cartoes='+codigo,'_blank', 'width=519px, height=630, scrollbars=yes, menubar=no, toolbars=no');
}

function aumentaFonte(div_id,campo_tamanho_value,campo_tamanho)
{
	
	
    parseInt(campo_tamanho_value);

    if( campo_tamanho_value < 14 ){
        campo_tamanho_value ++;
    }

    campo_tamanho.value = campo_tamanho_value;
    //document.getElementById(div_id).style.fontSize = campo_tamanho_value;
    $("#principal_fonte").css("font-size",campo_tamanho_value);
    //$("#main").css("font-size",campo_tamanho_value);

    //bloco para mudar o tamanho dentro de tds, elas devem ter uma classe com o tamanho da fonte, co caso a classe é principal_fonte_td
    tds = document.getElementsByTagName("td");

    for( var i=0 ; i<tds.length ; i++ )
    {
        if(tds[i].className=="principal_fonte_td"){
            tds[i].style.fontSize=campo_tamanho_value;
	 }
    }

    //bloco para mudar o tamanho dentro das divs, elas devem ter uma classe com o tamanho da fonte, co caso a classe é principal_fonte_div
    div = document.getElementsByTagName("div");

    for( var i=0 ; i<div.length ; i++ )
    {
        if(div[i].className=="principal_fonte_div"){
            div[i].style.fontSize=campo_tamanho_value;
	 }
    }


}

function diminuiFonte(div_id,campo_tamanho_value,campo_tamanho)
{
    parseInt(campo_tamanho_value);

    if( campo_tamanho_value > 8 )
        campo_tamanho_value --;

    campo_tamanho.value = campo_tamanho_value;
    //document.getElementById(div_id).style.fontSize = campo_tamanho_value;
    $("#principal_fonte").css("font-size",campo_tamanho_value);

    //bloco para mudar o tamanho dentro de tds, elas devem ter uma classe com o tamanho da fonte, co caso a classe é principal_fonte_td
    tds = document.getElementsByTagName("td");

    for( var i=0 ; i<tds.length ; i++ )
    {
        if(tds[i].className=="principal_fonte_td")
            tds[i].style.fontSize=campo_tamanho_value;
    }

    //bloco para mudar o tamanho dentro das divs, elas devem ter uma classe com o tamanho da fonte, co caso a classe é principal_fonte_div
    div = document.getElementsByTagName("div");

    for( var i=0 ; i<div.length ; i++ )
    {
        if(div[i].className=="principal_fonte_div"){
            div[i].style.fontSize=campo_tamanho_value;
	 }
    }

}

function abreImpressao(codigo_tela, id_tabela)
{

    window.open('imprime_materia.php?arquivo='+codigo_tela+'&codigo='+id_tabela,'_blank', 'width=519px, height=630, scrollbars=yes, menubar=no, toolbars=no');
}

function abreEmail(codigo_tela, id_tabela)
{

    window.open('envia_email.php?arquivo='+codigo_tela+'&codigo='+id_tabela,'_blank', 'width=459px, height=300px, scrollbars=no, menubar=no, toolbars=no');
}

function abreLink(endereco)
{

    window.open(endereco, '_blank');
    
}

/*marquee js*/

var oMarquees = [], oMrunning,
	oMInterv =        30,     //interval between increments
	oMStep =          1,      //number of pixels to move between increments
	oStopMAfter =     0,     //how many seconds should marquees run (0 for no limit)
	oResetMWhenStop = false,  //set to true to allow linewrapping when stopping
	oMDirection =     'left'; //'left' for LTR text, 'right' for RTL text

/***     Do not edit anything after here     ***/

function doMStop() {
	clearInterval(oMrunning);
	oMrunning = '';
	for( var i = 0; i < oMarquees.length; i++ ) {
		oDiv = oMarquees[i];
		oDiv.mchild.style[oMDirection] = '0px';
		if( oResetMWhenStop ) {
			oDiv.mchild.style.cssText = oDiv.mchild.style.cssText.replace(/;white-space:nowrap;/g,'');
			oDiv.mchild.style.whiteSpace = '';
			oDiv.style.height = '';
			oDiv.style.overflow = '';
			oDiv.style.position = '';
			oDiv.mchild.style.position = '';
			oDiv.mchild.style.top = '';
		}
	}
	oMarquees = [];
}
function doDMarquee() {
	if( oMarquees.length || !document.getElementsByTagName ) { return; }
	var oDivs = document.getElementsByTagName('div');
	for( var i = 0, oDiv; i < oDivs.length; i++ ) {
		oDiv = oDivs[i];
		if( oDiv.className && oDiv.className.match(/\bdmarquee\b/) ) {
			if( !( oDiv = oDiv.getElementsByTagName('div')[0] ) ) { continue; }
			if( !( oDiv.mchild = oDiv.getElementsByTagName('div')[0] ) ) { continue; }
			oDiv.mchild.style.cssText += ';white-space:nowrap;';
			oDiv.mchild.style.whiteSpace = 'nowrap';
			oDiv.style.height = oDiv.offsetHeight + 'px';
			oDiv.style.overflow = 'hidden';
			oDiv.style.position = 'relative';
			oDiv.mchild.style.position = 'absolute';
			oDiv.mchild.style.top = '0px';
			oDiv.mchild.style[oMDirection] = '0px';
			oMarquees[oMarquees.length] = oDiv;
			i += 2;
		}
	}
	oMrunning = setInterval('aniMarquee()',oMInterv);
	if( oStopMAfter ) { setTimeout('doMStop()',oStopMAfter*1000); }
}
function aniMarquee() {
	var oDiv, oPos;
	for( var i = 0; i < oMarquees.length; i++ ) {
		oDiv = oMarquees[i].mchild;
		oPos = parseInt(oDiv.style[oMDirection]);
		if( oPos <= -1 * oDiv.offsetWidth ) {
			oDiv.style[oMDirection] = oMarquees[i].offsetWidth + 'px';
		} else {
			oDiv.style[oMDirection] = ( oPos - oMStep ) + 'px';
		}
	}
}

if( window.addEventListener ) {
	window.addEventListener('load',doDMarquee,false);
} else if( document.addEventListener ) {
	document.addEventListener('load',doDMarquee,false);
} else if( window.attachEvent ) {
	window.attachEvent('onload',doDMarquee);
}

/**fim do marquee js**/
