function land(ref, target)
{
lowtarget=target.toLowerCase();
if (lowtarget=="_self") {window.location=loc;}
else {if (lowtarget=="_top") {top.location=loc;}
else {if (lowtarget=="_blank") {window.open(loc);}
else {if (lowtarget=="_parent") {parent.location=loc;}
else {parent.frames[target].location=loc;};
}}}
}
function jump(menu)
{
ref=menu.choice.options[menu.choice.selectedIndex].value;
splitc=ref.lastIndexOf("*");
target="";
if (splitc!=-1)
{loc=ref.substring(0,splitc);
target=ref.substring(splitc+1,1000);}
else {loc=ref; target="_self";};
if (ref != "") {land(loc,target);}
}

document.write('<form action="dummy" method="post">');
document.write('<select name="choice" size="0" onChange="jump(this.form)">');
document.write('<option value="http://www.bigbeargetawayguide.com/lodging.html*_top">additional destinations</option>');
document.write('<option value="http://www.bigbeargetawayguide.com/cgi-bin/axs/ax.pl?http://www.thebigbearnet.com/arts.html*_top">arts/entertainment</option>');
document.write('<option value="http://www.bigbeargetawayguide.com/cgi-bin/axs/ax.pl?http://www.thebigbearnet.com/gettinghere.html*_top">getting to big bear</option>');
document.write('<option value="http://www.bigbeargetawayguide.com/lodging.html*_top">get-away home</option>');
document.write('<option value="http://www.bigbeargetawayguide.com/cgi-bin/axs/ax.pl?http://www.thebigbearnet.com/virtualbigbear.html*_top">latest updates</option>');
document.write('<option value="http://www.bigbeargetawayguide.com/cgi-bin/axs/ax.pl?http://www.bigbearleadsclub.com*_blank">big bear leads club</option>');
document.write('<option value="http://www.bigbeargetawayguide.com/cgi-bin/axs/ax.pl?http://www.bigbearcityrenaissancefaire.com*_blank">renaissance faire</option>');
document.write('<option value="http://www.bigbeargetawayguide.com/cgi-bin/axs/ax.pl?http://www.openskyfestival.com*_blank">open sky music fest</option>');
document.write('<option value="http://www.bigbeargetawayguide.com/cgi-bin/axs/ax.pl?http://www.oldminers.org*_blank">old miners days</option>');
document.write('</select>');
document.write('</form>');