
getMovie = function(movieName)
{
	var swf = "";

	if (window.document[movieName])
	{
		swf = window.document.getElementById(movieName);
	}
	else
	{
		if (navigator.appName.indexOf("Microsoft") != -1)
		{
			swf = window[movieName]
		}
		else
		{
			swf = document[movieName]
		}
	}

	return swf;
}

/* Providers*/

openPopUpWindow = function(ppUrl)
{	
	var winH = screen.availHeight;
	var winW = screen.availWidth;
	var posTop = 0;
	var posLeft = 0;
	var winSpec = 'top=' + posTop + ', left=' + posLeft + ', ' +
					'width=' + winW + ', height=' + winH + ', ' +
					'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no';
	
	var swf = getMovie("IndimagemMicrosite");
	win = window.open(ppUrl, '', winSpec);
	if (win == null){
		swf.bloquearPopUp(false);
	}
	else{
		swf.bloquearPopUp(true);
	}

	if (window.opera){
		if (!win.opera){
			swf.bloquearPopUp(false);
		}
		else{
			swf.bloquearPopUp(true);
		}
	}
}
