function borrar(){
	window.document.frmSend.HDDaccion.value=2;
	window.document.frmSend.target="_self";
	window.document.frmSend.method="post";
	window.document.frmSend.action="trabaja.asp";
	window.document.frmSend.submit();
}

function grabar(){
		nombre=window.document.frmSend.txtNombres.value;
		apellido=window.document.frmSend.txtApellidos.value;
		curri= window.document.frmSend.attach1.value;
		docto=curri.split('.');
		documento= docto[(docto.length)-1];
		if (documento!="doc" && documento!="pdf"){
			alert("Sólo pueden ser adjuntados archivos con extensión .doc y .pdf ");
		}else{
			if (!valida(nombre)){
				alert("Debe Ingresar su nombre");
			}else{
				if (!valida(apellido)){
					alert("Debe Ingresar su Apellido");
				}else{
					if (!valida(curri)){
						alert("Debe adjuntar su curriculum");
					}else{
						
						window.document.frmSend.HDDaccion.value="1";
						window.document.frmSend.HDDarchivo.value=window.document.frmSend.attach1.value;
						window.document.frmSend.target="_self";
						window.document.frmSend.method="post";
						window.document.frmSend.action="trabaja.asp";
						//alert("Su Documento esta siendo registrado");
						window.document.frmSend.submit();
						
					}				
				}			
			}
		}
}
