// Pop up instructions page
function popup_instructions(path) {
    newwindow=window.open( path ,'name','height=200,width=150,scrollbars=yes,menubar=no,toolbar=no,status=no');
    if (window.focus) {newwindow.focus()}
    return false;
}

// Resize window
function resizeOuterTo(w,h) {
    if (parseInt(navigator.appVersion)>3) {
        if (navigator.appName=="Netscape") {
            top.outerWidth=w;
            top.outerHeight=h;
        }
        else top.resizeTo(w,h);
    }
}  

