function ejecutaAjaxContacto() {
	var pars = Form.serialize('Form_contacto');
	var url = '/codes/contact.php';
	var myAjax = new Ajax.Request(url, { 
	  method: 'post',
	  parameters: pars,   
	  onComplete: showResponse,
	  onCreate: muestraEstado('Enviando Datos<br />&nbsp;')
  }); 
} 


function muestraEstado(text) {
//	text;
}
function showResponse(ajax) {
	alert(ajax.responseText); 
}
function aclarar(cual) {
	if ($(cual).value == '') {
		new Effect.Highlight(cual, {duration:0.3, startcolor:'#d3d3d3', endcolor:'#33333', restorecolor:'#333333'});
		$(cual).style.color = "#fff";
	}
}
function oscurecer(cual) {
	if ($(cual).value == '') {
		$(cual).style.color = "#000";
		$(cual).style.background = "#d3d3d3";
	}
}


