function redirect()
{
if(document.getElementById('desplega').options[document.getElementById('desplega').selectedIndex].value != "")
	{
		valor=document.getElementById('desplega').options[document.getElementById('desplega').selectedIndex].value;

		if(valor.substring(0,4)== "ex__") //a tots els links a webs externes s'ha d'afegir ex__
			{
				valor=valor.substring(4,valor.length);
				window.open(valor,'nova','top=0,left=0,width=750,height=550,screenX=0,screenY=0,scrollbars=1,status,toolbar,location,menubar')
			}
		else
			{
				window.parent.location=valor;
			}
	}
return false;
}