function tcn_URLSelectShow(formname, selectName, target) {

	var myform = eval("document." + formname);
    var lista = myform.elements[selectName];
    window.open(lista.options[lista.selectedIndex].value, target);
    lista.selectedIndex = 0;

}
