function borrarImg( id ){
	
	if ( confirm("Seguro que quiere borrar la foto?") && !isNaN(id) ){

		new Ajax('includes/borrarImg.php', { method: 'get', data: 'id=' + id, 
				 	onComplete: function(r){
						
						if( parseInt(r) ){ $('img'+id).setStyle("display", "none"); }else{ alert("error: intentelo de nuevo"); }
					
					}
				 }).request();
			
	}
	
}

function borrarNovedad( id ){
	
	if ( confirm("Seguro que quiere borrar esta novedad?") && !isNaN(id) ){

		new Ajax('includes/borrarNovedad.php', { method: 'get', data: 'id=' + id, 
				 	onComplete: function(r){
						
						if( parseInt(r) ){ $('novedad'+id).setStyle("display", "none"); }else{ alert("error: intentelo de nuevo"); }
					
					}
				 }).request();
			
	}
	
}

function contacto_enviar( e ){

	new Event(e).stop();
	
	var error = 0;
	var mensaje = $('contacto_mensaje');
	var email = $('contacto_email');
	
	error = mensaje.value != "" ? error : 1;
	error = email.value != "" ? error : 2;
	
	switch ( error ){
		case 0: default: $('contacto_form').submit(); break;
		case 1: alert("Debe ingresar un mensaje"); break;
		case 2: alert("Debe ingresar un email"); break;
	}
	
}

function verVideo(){

	window.open("includes/expoEventos.php","Expo eventos Novias 2003", "width=325,height=287,menubar=no,location=no,resizable=no,scrollbars=yes,status=no");

}