// Realizado Por Francis Jimenez ~ miwebenlared@gmail.com ~

// Funcion que redirige hacia una web.
function promociones(){
 	location.href = 'http://www.ofiwex.com/promocion.pdf';	
}


function cprincipal()
{
	var current = document.getElementById("banneroo").style.visibility;

	if(current == "visible")
		document.getElementById("banneroo").style.visibility = "hidden";
	else
		document.getElementById("banneroo").style.visibility = "visible";
}

