function doHelp(ref) {
    new_window = window.open('http://84.234.71.21/netta/help.htm#'+ref,'ohje',
        'toolbar=no,location=no,directories=no,status=no,resizable=yes,scrollbars=yes,width=560,height=300')
}
function KeyPress() {
    var keycode
    if (window.event) keycode = window.event.keyCode
    else if (e) keycode = e.which
    else return true
    if (keycode == 13) {
        if ( currfield == 1 )
            document.searchbox.submit()
        if ( currfield == 2 )
            document.quicksrch.submit()
        return false
    }
    return true
}
function doLink(link) {
    new_window = window.open(link,'','toolbar=yes,location=yes,menubar=yes,directories=yes,status=yes,resizable=yes,scrollbars=yes,width=700,height=450')
}
function isCookies() {
document.cookie="testcookie=1; path=/"
cookieEnabled=(document.cookie.indexOf("testcookie")!=-1)? true : false
if ( cookieEnabled ) {
    document.cookie="testcookie=null; path=/; expires=Thu, 01-Jan-70 00:00:01 GMT"
}
return cookieEnabled
}
