var dummyurl;

function validateContestRegistration() {
	//alert(dummyurl)
	$.ajax({
		   type: "POST",
		   url: dummyurl,
		   data: $('#contest').serialize(),
		   success: function(transport, textStatus){
					if (textStatus == 'success') {
						response = $.evalJSON(transport);
						if (!response.error) {
							$("#mainForm").html(response.message);
							$("#errormath").hide();
						} else {
							(response.type == 1) ? $("#errormath").show() : false ;
							(response.type == 2) ? $("#errorcup").show() : false ;
						}
					}
		   }
		 });
	return false;		
}
		
