// JavaScript Document


function SearchClear(form) {
	if(document.topsearch.q.value == 'modello o caratteristiche') {
	document.topsearch.q.value = '';
	}
}
function SearchDefault(form) {
if(document.topsearch.q.value == '') {
	document.topsearch.q.value = 'modello o caratteristiche';
	}
}
function SearchClearSubmit(form) {
	if(document.topsearch.q.value == 'modello o caratteristiche') {
	document.topsearch.q.value = '';
	}
}

function LoginClear(form) {
	if(document.login.username.value == 'username') {
	document.login.username.value = '';
	document.login.password.value = '';
	}
}
function LoginDefault(form) {
if((document.login.username.value == '') && (document.login.password.value == '')) {
	document.login.username.value = 'username';
	document.login.password.value = 'password';
	}
}
function LoginClearSubmit(form) {
	if(document.login.username.value == 'username') {
	document.login.username.value = '';
	}
}

function CheckEmail(){
var okay = true;

if ((document.lostemail.email.value.match(/\b(^(\S+@).+((\.me)|(\.eu)|(\.com)|(\.net)|(\.edu)|(\.it)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi) == null) && (okay == true)){;
    alert ('Inserisci un indirizzo e-mail valido');
    okay = false;

};
return okay;
};

function DisableButton(){
	document.registra.invia.disabled=true;
	document.registra.invia.value='Registro...';
	document.registra.submit();
};

function redirectHome() {
	window.location = "./";
}
