/* ****************************************************************************
 * scripts.js
 * (cc) Daniel García    Diciembre 2009
 * http://danigarcia.org   contacto {at} danigarcia.org
 * ************************************************************************** */

function cambiaImagen(origen, imagen)
{
	(document.getElementById(origen)).src = imagen;
}

function redireccionar(url)
{
	window.location = url;
}

function openPopUp(url)
{
	window.open(url,'popup','width=1024,height=680,toolbar=false,scrollbars=false,top=3,left=3');
}

function openPopUpCreditos()
{
	window.open('creditos.html','popup','width=800,height=390,toolbar=false,scrollbars=false,top=3,left=3');
}

