function suscribe() {
	var NL      = document.frm.mail;
	var email   = NL.value
	var emailok = true;
	if (email.indexOf("@")==-1 || email.indexOf(".")==-1 || email.split("@")[0]=="" || email.split("@")[1]=="" || email.split("@")[1].indexOf(".")==-1 || email.split("@")[1].split(".")[0]=="" || email.split("@")[1].split(".")[1]=="") {
		emailok=false
	} else {
		for (var buc=email.length-1; buc>=0; buc--) {
			var c = email.charAt(buc)
			if ( (c<'a' || c>'z') && (c<'A' || c>'Z') && (c<'0' || c>'9') && (c!='@' && c!='.' && c!='-' && c!='_') ) {
				emailok=false
			}
		}
	}
	if ( email == 'name@server.com' ) 
	{
		document.frm.mail.value = "Sorry, wrong e-mail !"
		if (document.all) document.frm.mail.style.borderColor="#FF8A00"
		if (document.all) setTimeout("document.frm.mail.value='"+email+"'; document.frm.mail.style.borderColor='#BABBB4';",1000)
		else     
		  setTimeout("document.frm.mail.value='"+email+"';",2000)
		  return false ;
	}
	if ( emailok == false ) {
		document.frm.mail.value = "Sorry, wrong e-mail !"
		if (document.all) document.frm.mail.style.borderColor="#FF8A00"
		if (document.all) setTimeout("document.frm.mail.value='"+email+"'; document.frm.mail.style.borderColor='#BABBB4';",1000)
		else       setTimeout("document.frm.mail.value='"+email+"';",2000)
	}
	else {
		return true
	}
	return false
}

