

<!--

// original code by Bill Trefzger 12/12/96

function go1(){

if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") {

location = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value

		}

	}

//-->



<!--

document.write('<form name="selecter1"><select name="select1" size=1>');

document.write('<option value=none>Select a destination');

document.write('<option value=none>--------------------');

document.write('<option value="austria.html">Austria');

document.write('<option value="belgium.html">Belgium');

document.write('<option value="czech.html">Czech Republic');

document.write('<option value="denmark.html">Denmark');

document.write('<option value="finland.html">Finland');

document.write('<option value="france.html">France');

document.write('<option value="germany.html">Germany');

document.write('<option value="britain.html">Great Britain');

document.write('<option value="greece.html">Greece');

document.write('<option value="hungary.html">Hungary');

document.write('<option value="iceland.html">Iceland');

document.write('<option value="ireland.html">Ireland');

document.write('<option value="italy.html">Italy');

document.write('<option value="latvia.html">Latvia');

document.write('<option value="liech.html">Liechtenstein');

document.write('<option value="lith.html">Lithuania');

document.write('<option value="luxembourg.html">Luxembourg');

document.write('<option value="malta.html">Malta');

document.write('<option value="med.html">Mediterranean Coastline');

document.write('<option value="netherlands.html">Netherlands');

document.write('<option value="norway.html">Norway');

document.write('<option value="poland.html">Poland');

document.write('<option value="portugal.html">Portugal');

document.write('<option value="scandinavia.html">Scandinavia');

document.write('<option value="spain.html">Spain');

document.write('<option value="sweden.html">Sweden');

document.write('<option value="switzerland.html">Switzerland');

document.write('</select>');

document.write('<input type="button" value="Go" onclick="go1()">');

document.write('</form>');

// end hiding contents -->

