// function WriteSelect() {
	document.writeln('<form>');
    document.writeln('<SELECT NAME="list">');
    document.writeln('<option selected>Venture Into The Den!</option>');
    document.writeln('<option value>');
    document.writeln('<option value="cats.html">Big Cats Home</option>');
    document.writeln('<option value>');
	document.writeln('<option value="index.html">Lynn\'s World Home</option>');
	document.writeln('<option value>');
    document.writeln('<option value="Panthers.html">Black Panthers</option>');
	document.writeln('<option value="Cheetahs.html">Cheetah</option>');
	document.writeln('<option value="Snow.html">Snow leopard</option>');
	document.writeln('<option value="Jaguars.html">Jaguars</option>');
	document.writeln('<option value="Leopards.html">Leopards</option>');
    document.writeln('<option value="Clouded.html">Clouded Leopards</option>');
    document.writeln('<option value="Tigers.html">Tigers</option>');
	document.writeln('<option value="Lions.html">Lions</option>');
    document.writeln('<option value>');
    document.writeln('<option value="mailto:lynnosler@comcast.net">Email Me</option>');
    document.writeln('</SELECT><br>');
    document.writeln('<input type="button" value="Open The Gate"');
    document.writeln('onClick="top.location.href=this.form.list.options[this.form.list.selectedIndex].value">');
	document.writeln('</form>');
// }


