//
// Enlazar
//
//

function ChangeUrl(enlace)
	{
	if (enlace.ListeUrl.selectedIndex != 0)
//	if (enlace.ListeUrl.options[enlace.ListeUrl.selectedIndex].value != "")
		{
		window.open(enlace.ListeUrl.options[enlace.ListeUrl.selectedIndex].value, '' , 'toolbar=yes,scrollbars=1,location=1,statusbar=1,status=1,menubar=1,resizable=1,width=540,height=400,left = 140,top = 25');
	 	}
	else 
		{
		alert('Tienes que elegir un destino.');
		}
	}


