/* ------------------------------------------------- */
/* Funcoes para trocar imagem e texto periodicamente */
/* ------------------------------------------------- */

var Content = new Array();

var preLoad = new Array();

var htmlContainer

var limit;
var j = 1;
var p = 1;

/* imagem */
function switchEstreias(estreiasNr){
	limit = estreiasNr;
	runSlideShow();
}
	
function runSlideShow(){
	var htmlContainerToHide = new Object();
		htmlContainerToHide = document.getElementById(p);
		htmlContainerToHide.style.display = "none";
	htmlContainer = document.getElementById(j);
	htmlContainer.style.display = "block";
	p = j;
	j++;
	if (j > (limit)) j=1;
	t = setTimeout('runSlideShow()', 5000)
}

function overlay(curobj, subobjstr, opt_position){
if (document.getElementById){
var subobj=document.getElementById(subobjstr)
subobj.style.display=(subobj.style.display!="block")? "block" : "none"
var xpos=getposOffset(curobj, "left")+((typeof opt_position!="undefined" && opt_position.indexOf("right")!=-1)? -(subobj.offsetWidth-curobj.offsetWidth) : 0) 
var ypos=getposOffset(curobj, "top")+((typeof opt_position!="undefined" && opt_position.indexOf("bottom")!=-1)? curobj.offsetHeight : 0)
subobj.style.left=xpos+"px"
subobj.style.top=ypos+"px"
return false
}
else
return true
}

function overlayclose(subobj){
document.getElementById(subobj).style.display="none"
}

function redirect(link)
{
	if (link != '') {
		window.location = link;
	}
}

function Lojistas() {
	window.open('http://portal.mundicenter.com/odivelas/main.aspx','lojistas','toolbar=no,width=700,height=563,location=no,status=yes,directories=no,menubar=no,scrollbars=yes,resizable=no');
}
function Imprensa(IDCentro) {
	theURL="http://www.mundicenter.com/";
	window.open(theURL+'imprensa/default.aspx?iIDCentro='+IDCentro.toString(),'imprensa','toolbar=no,width=700,height=500,location=no,status=no,directories=no,menubar=no,scrollbars=yes,resizable=no');
}

function filmeTrailer(youtubeId){
	document.write("<br>");
	document.write("<br>");
	document.write("<object width='363' height='270'><param name='movie' value='http://www.youtube.com/v/"+youtubeId+"'></param><param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param><embed src='http://www.youtube.com/v/"+youtubeId+"' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='363' height='270'></embed></object>");
}