// JavaScript Document

function changeURL(url) 
{
location.href=url;
}

function changeURLnew(url) 
{
window.open(url); 
}

function validate(nom)
{
	var t_div = document.getElementById(nom);

	if (t_div.checked!=true)
	{
			alert('Falta aceptar les condicions legals');
			return false;	
	}
	else
	{
			/* submit would go here */

			 document.treb.submit();
			 return true;

			//alert('thanks for validating our form');

			//return false;
	}
	
		if ( e )
		{

		}
		else
		{
			/* submit would go here */

			// document.test.submit();
			// return true;

			alert('thanks for validating our form');

			return false;
		}
	}





