﻿// JScript File

function centraliza(width, height)
{
 var x = (screen.width / 2) - width;
 var y = (screen.height / 2) - height;
 window.moveTo(x,y);
}

function abrePopUp(url, width, height)
{
   window.open(url,'pop','width=' + width + ',height=' + height + ',scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');
}

//====================== Tamanho da fonte ========================//
var tgs = new Array( 'div' );
var szs = new Array( '8','9','10','11','12','13','14' );
var startSz = 4;

function ts( trgt,inc ) 
{
	if (!document.getElementById) return
		var d = document,cEl = null,sz = startSz,i,j,cTags;
		sz += inc;

			if ( sz < 0 ) sz = 0;
			if ( sz > 6 ) sz = 6;
				startSz = sz;

			if ( !( cEl = d.getElementById( trgt ) ) ) cEl = d.getElementsByTagName( trgt )[ 0 ];

			cEl.style.fontSize = szs[ sz ];

		for ( i = 0; i < tgs.length; i++ ) 
		{
			cTags = cEl.getElementsByTagName( tgs[ i ] );
				for ( j = 0; j < cTags.length; j++ ) 
				    cTags[ j ].style.fontSize = szs[ sz ];
		}
}

//jQuery
$(document).ready(function(){
	$('#propaganda').fadeIn(3000, function(){
		setInterval(esconde, 5000);
	}).click(function(){
		//abrePopUp('eap_view_curso.aspx?id_curso=1044','518','410');
		window.location.href = 'http://abomg.no-ip.com/abo/meetingdeestetica/meeting/site/paginas/principal.php?acao=primeira';

	});
	
	function esconde()
	{
		$('#propaganda').fadeOut(3000);
	}
});


