

function lOnLoad()
	{
	if(document.getElementById('acceso'))	
		{
		document.getElementById('acceso').onchange = function()
			{
				if(this.options[this.selectedIndex].value != '#')
				{
				document.location.href = this.options[this.selectedIndex].value;
				}
			} 	
		}
	}