﻿<!--
function go_to_page_nobutton()
{
if(liste.destination.selectedIndex == 0)
alert('Choisissez une destination !');
else
<!-- si votre site ne comporte pas de frames : -->
window.location.href=''+liste.destination.options[liste.destination.selectedIndex].value;
<!-- si votre site comporte des frames : -->
parent.frames['nom_de_votre_frame_de_destination'].location = ''+liste.destination.options[liste.destination.selectedIndex].value;

}
//-->