// VALIDACION DE LA URL SOLICITADA
function detecta_frame()
{
	if(top.frames.length == 0)
	{
		var rutaAbsoluta = self.location.href;        // http://asdas.asd/uno/dos/index.html
		window.location.href = 'http://localhost:8080/ubp_v2/www/index.php?p='+rutaAbsoluta;
	}	
}

// VALIDACIONES DEL FORMULARIO DE CONTACTO
function validarContacto()
{
	var f = document.formContacto;
	var error = '';
	
	if(f.nombre.value == '')
	{
		error += '\n- Nombre y Apellido'	;
	}
	
	if(f.email.value == '')
	{
		error += '\n- Dirección de email';
	}
	
	if(f.mensaje.value == '')
	{
		error += '\n- Mensaje';
	}
	
	if(error == '')
	{
		f.submit();
	}
	else
	{
		alert('Por favor complete los campos obligatorios.\n'+error)	;
	}
}