// JavaScript Document


	function showNletter(){
	
	var theDiv = document.getElementById("hiddenDiv");
	
	if(theDiv.style.visibility =="hidden"){
		theDiv.style.visibility = "visible";
		theDiv.style.display = "";
		theDiv.style.zIndex=100;
		}else{
		theDiv.style.visibility = "hidden";
		theDiv.style.display = "";
			}
	
	}
	
	
	
	function ValidateNL(){
	
	var Name = document.getElementById("Header2_NL1_NLname");
	var Mail = document.getElementById("Header2_NL1_NLMail");
	AtPos = Mail.value.indexOf("@")
    StopPos = Mail.value.lastIndexOf(".")
	
	if(Name.value==""){
	Name.focus();
	alert("Insert Name");
	return false;
	}else if(Mail.value==""){
	Mail.focus();
	alert("Insert E-mail");
	return false;	
	}else if(AtPos == -1 || StopPos == -1){
	Mail.focus();
	alert("Not Valid E-mail");
	return false
	}else {
	return true;
	}
	
	
	}
	
	
	function OverMe(mee){
		
		var meme = document.getElementById(mee);
		
		meme.style.backgroundColor ="#CCCCCC"
		//alert(meme.style.BackgroundColor);
		
		}
	
	function OutMe(mee){
		
		var meme = document.getElementById(mee);
		meme.style.backgroundColor ="#ffffff"
		}
	
	
