// JavaScript Document
function saltoIndex(lang)
{
	document.location.href = "http://www.novecento.es?lang="+lang;
}

function clickInEmail()
{
	var boxEmail = document.getElementById('usuario');
	if(boxEmail.value == "email")
		boxEmail.value = "";
}

function focusOutEmail()
{
	var boxEmail = document.getElementById('usuario');
	if(boxEmail.value == "")
		boxEmail.value = "email";
}

function clickInPassword()
{
//	alert("Entrando");
	var boxPassword = document.getElementById('contrasenya');
	if(boxPassword.value == "********")
		boxPassword.value = "";
}

function focusOutPassword()
{
	var boxPassword = document.getElementById('contrasenya');
	if(boxPassword.value == "")
		boxPassword.value = "********";
}

function idiomaNoDisponible()
{
	alert("This feature is not available yet.\nSoon you will be able to change the language.\nWe apologize for any inconvenience.");
}
