// JavaScript Document
function swap(Obj1, Estilo)
	{
		Obj1.className= Estilo;
	}
function Redireccionar(Pagina)
	{
		window.location = Pagina;	
	}
function ShowScreen(sImg)
	{
		showImg = document.getElementById("sshot");
		showImg.src=("images/"+sImg+".jpg");
		showBox = document.getElementById("Box1");
	    showBox.style.visibility = "visible";
	}	
	function OcultarScreen()
	{
		showBox = document.getElementById("Box1");
	    showBox.style.visibility = "hidden";
	    showImg = document.getElementById("sshot");
	    showImg.src=("images/loading.gif");
	}
