function campoVacio(Obj,Nombre){
	
	if (Obj.value == ""){
		alert("El campo < " + Nombre + " > no puede estar vacio, completelo e intente nuevamente");									Obj.focus();
		return false;
	} else 	return true;
}

function Submitt(){
	

sw = true;

	if (sw == true) sw = campoVacio(document.ingresadatos.EV_ID_ART,"NOMBRE DEL ARTISTA");
	if (sw == true) sw = campoVacio(document.ingresadatos.EV_TITULO,"TITULO DEL EVENTO");
	if (sw == true) sw = campoVacio(document.ingresadatos.DIA,"DÍA");
	if (sw == true) sw = campoVacio(document.ingresadatos.MES,"MES");
	if (sw == true) sw = campoVacio(document.ingresadatos.ANO,"AÑO");


	if (sw) document.ingresadatos.submit();

}