function RunFlashContent(str) {
	document.write(str);
	//alert(str);
}

function RunFlashContentInsideObject(str) {
	//document.getElementById(oId).outerHTML = str + "hello";	
	
	var divMainContent = document.getElementById("divMainContent");
	
	divMainContent.innerHTML = str;
	
	var arrObjects = divMainContent.getElementsByTagName("OBJECT");
	
	for (var i = 0; i < arrObjects.length; i++) {
		//arrObjects[i].outerHTML = arrObjects[i].outerHTML;
		arrObjects[i].style.visibility = "visible";
	}
	
	window.scrollTo(0,0);
	
	
	
	//document.recalc();
		
	
}

function AbrirGaleria() {
	
	//alert(screen.width + "  " + screen.height);
	
	var posTop = (screen.height / 2) - 225;
	var posLeft = (screen.width / 2) - 385;
	
	
	window.open("Galeria/Galeria.aspx", "galeria", "channelmode=0, directories=0, fullscreen=0, height=450, width=770, left=" + posLeft  +  ", top=" +  posTop  +  ", location=0, resizable=0, scrollbars=1, status=0, toolbar=0", true);;
}
