<!-- Hide from JavaScript-Impaired Browsers
// Script by Riverdrift 2001
function generate(form){
var txt = '<div align="center">\r\n';
if (document.drop.tab.value != "") {
txt = txt + '<table bgcolor="' + document.drop.tab.value + '" border="6"><tr><td align="center">\n';
}
if (document.drop.dow[0].checked) {
txt += '<form name="menu" action="">\n'
+'<select onchange="window.open(this.options'
+'[this.selectedIndex].value)">\n';
}
if (document.drop.dow[1].checked) {
txt += '<form method="get" name="menu"'
+' action="http://www.riverdrift.com/cgi/jumpb.pl">\n'
+'<select name="url">\n';
var Button = '<input type="submit" value="Go" />\n';
}
if (document.drop.dow[2].checked) {
txt += '<form method="get" name="menu"'
+' action="http://www.riverdrift.com/cgi/jumpb.pl">\n'
+'<select name="url" width="275">\n';
var Button = '<font color="'+
document.drop.btext.value+
'">\n<input type="submit"'+
' borderimage="'+document.drop.bbi.value+'"'
+' value="Go" usestyle /></font>\n';
}
if(document.drop.mtitl.value)          
txt+='<option>'+document.drop.mtitl.value+'</option>\n'; 
if(document.drop.url1.value)          
txt+='<option value="' +document.drop.url1.value+'">'+document.drop.titl1.value+'</option>\n'; 
if(document.drop.url2.value)          
txt+='<option value="' +document.drop.url2.value+'">'+document.drop.titl2.value+'</option>\n'; 
if(document.drop.url3.value)          
txt+='<option value="' +document.drop.url3.value+'">'+document.drop.titl3.value+'</option>\n'; 
if(document.drop.url4.value)          
txt+='<option value="' +document.drop.url4.value+'">'+document.drop.titl4.value+'</option>\n'; 
if(document.drop.url5.value)          
txt+='<option value="' +document.drop.url5.value+'">'+document.drop.titl5.value+'</option>\n'; 
if(document.drop.url6.value)          
txt+='<option value="' +document.drop.url6.value+'">'+document.drop.titl6.value+'</option>\n'; 
if(document.drop.url7.value)          
txt+='<option value="' +document.drop.url7.value+'">'+document.drop.titl7.value+'</option>\n'; 
if(document.drop.url8.value)          
txt+='<option value="' +document.drop.url8.value+'">'+document.drop.titl8.value+'</option>\n'; 
if(document.drop.url9.value)          
txt+='<option value="' +document.drop.url9.value+'">'+document.drop.titl9.value+'</option>\n'; 
if(document.drop.url10.value)          
txt+='<option value="' +document.drop.url10.value+'">'+document.drop.titl10.value+'</option>\n'; 
if (document.drop.dow[0].checked) {
txt += '<option value="http://www.riverdrift.com/m2/jumper.shtml">'
+'Dropdown Menu Generator</option>\n'+
'</select>\n</form>\n';
}
if (document.drop.dow[1].checked) {
txt += '<option value="http://www.riverdrift.com/m2/jumper.shtml">'
+'Dropdown Menu Generator</option>\n'
+'</select>\n'+Button+'</form>\n';
}
if (document.drop.dow[2].checked) {
txt += '<option value="http://www.riverdrift.com/m2/jumper.shtml">'
+'Dropdown Menu Generator</option>\n'+
'</select>\n'+Button+'</form>\n';
}
if (document.drop.tab.value != "") {
txt = txt + '</td>\n</tr>\n</table>\n';
}
txt = txt + '</div>\r\n'
document.codes.box.value=txt;
}
function viewit() 
{ 
document.write (document.codes.box.value) 
} 
function copy()  {
document.codes.box.focus();
document.codes.box.select();
}
// End Hiding -->


