$(function(){ $('#nome, #email').focus(function(){ if ($(this).val() == $(this)[0].defaultValue) $(this).val(''); }).blur(function(){ if ($(this).val() == '') $(this).val($(this)[0].defaultValue); }); });

function EnviarNewsLetter(){
	var strNome = $('#nome').val(),
		strEmail = $('#email').val(),
		strCodigoSite = '3'; // Colocar o código do site

	if (strNome == '' || strEmail == '' || strNome == 'Digite seu nome' || strEmail == 'Digite seu e-mail'){
		alert('Por favor, preencha Nome e Email!');
		return false;
	}

	$.ajax({
		type: 'POST',
		url: 'APINewsLetter.aspx?nome=' + strNome + '&email=' + strEmail + '&codigosite=' + strCodigoSite,
		success: function(data){ alert(data); }
	});

	return false;
}

