function CheckInput2(TheForm) {
	if (TheForm.Name2.value == '') {
		TheForm.Name2.focus();
		alert('Your Full Name is required');
		return false;
	} else if (TheForm.Email2.value == '') {
		TheForm.Email2.focus();
		alert('Your Email Address is required');
		return false;
	} else if (!(/^.+@.+\..{2,4}$/.test(TheForm.Email2.value))) {
		TheForm.Email2.focus();
		alert('The Email Address entered is not in the proper format.');
		return false;
	} else {
		//alert('Redy to go');
		$.ajax(
		{
			type: 	"POST",
			url: 	"http://216.180.241.98/~exoticar/admin/subcribe.php",
			data: 	"Name2=" + TheForm.Name2.value + "&Email2=" + TheForm.Email2.value,
			success:function(content)
			{
				//alert('Thank-you for your interest, you have been added to our list.');	
				alert(content);					
			}
		});	
		return false;		
	}
	return false;
}