var query = 2;
var htmfile="just_visible.htm";
var qString = new String(window.location); 
var queryStart = qString.indexOf('?'); 
if (qString.substring(queryStart + 1, qString.length)>0) {
 var query = qString.substring(queryStart + 1, qString.length); 
}

function goshortcut() {
ind = shortcuts.go.selectedIndex;
val = shortcuts.go.options[ind].value;
var sneeuw=(val);
window.location=htmfile + '?' + sneeuw;
}



function do_applet() {
document.writeln(" <applet codebase='.' code='snow' width='800' height='500' alt='Java is not working in your browser'> ");
document.writeln(" <param name=image value='just_visible.jpg'> ");
document.writeln(" <param name='href' value='/haiga/norman/exp.htm'> ");
document.writeln(" <param name='strength' value=" + query + "> ");
document.writeln(" <img src='just_visible.jpg' width=799 height=499 alt='Java is not working in your browser'> ");
document.writeln(" </applet> ");
}

