// Verifica se está dentro do frame
if (self == top){
	// SE ESTÁ FORA DO FRAME
	var sPagina = window.location.toString();
	sPagina = sPagina.split("/");
	var sLink = '';
	var iLen = sPagina.length-1;
	
	for(var i=0;i<iLen;i++){
		sLink += sPagina[i] + '/';
	}
	top.location.href = sLink+'?PAG='+sPagina[iLen];
}


// Pop-up
function abrePop(pPagina,pLargura,pAltura,pScroll){
  	var posX = (window.screen.width - pLargura - 17) / 2;
  	var posY = (window.screen.height - pAltura) / 2;

	var win = window.open(pPagina,"","width=" + pLargura + ", height=" + pAltura + ", top=" + posY + ", left=" + posX + ",status=no,toolbar=no,menubar=no,location=no,scrollbars=" + pScroll);
	win.focus();
}


// Vídeo Hipercard
function abrePopVideo(){
	var pLargura = 320;
	var pAltura = 264;
	var posX = (window.screen.width - pLargura - 16) / 2;
	var posY = (window.screen.height - pAltura) / 2;

	var win = window.open("pop_video.htm","PopVideo","width=" + pLargura + ",height=" + pAltura + ",top=" + posY + ",left=" + posX + ", status=no, toolbar=no, menubar=no, location=no, scrollbars=no");
	win.focus();
}


function fechaJanela(){
	window.opener = window;
	self.close();
}

// When the page loads
window.onload = function(){
	if (document.getElementsByTagName){
	// Get all the tags of type object in the page.
	var objs = document.getElementsByTagName("object");
		for (i=0; i<objs.length; i++){
			// Get the HTML content of each object tag
			// and replace it with itself.
			objs[i].outerHTML = objs[i].outerHTML;
		}
	}
}


// When the page unloads
window.onunload = function(){
	if (document.getElementsByTagName){
	//Get all the tags of type object in the page.
	var objs = document.getElementsByTagName("object");
		for (i=0; i<objs.length; i++){
			// Clear out the HTML content of each object tag
			// to prevent an IE memory leak issue.
			objs[i].outerHTML = "";
		}
	}
}


// Msg STATUS no Rodapé
window.status = 'AACD RS';