window.onload = function(){
	var mail = document.getElementById('mail');
	var button = document.getElementById('send');

	mail.onfocus = function(){
		if(this.value == 'Введите свой E-Mail') this.value='';	
	}
	
	mail.onblur = function(){
		if(this.value == '') this.value='Введите свой E-Mail';
	}
	
	mail.onchange = Valid;
	button.onclick = Valid;
}


function Valid(){	
	var mail = window.document.getElementById('mail');
	
	if(!(/^([a-z0-9_\-]+\.)*[a-z0-9_\-]+@([a-z0-9][a-z0-9\-]*[a-z0-9]\.)+[a-z]{2,4}$/i).test(mail.value)){
		ShowError('А адресок-то липовый!');
		
		return false;
	}
	
	return true;
}

function ShowError(msg){
	var message = document.createElement('div');
	
	message.setAttribute('class', 'mesbox');
	message.innerHTML = msg;
	
	document.getElementById('main_block').appendChild(message);
}
