function popUP(myURL,name,w,h)
{
    height = 580;
    width  = 780;
    w_name = 'n_win';

    if (name) {
        w_name = name;
    }

    if (h) {
        height = h;
    }

    if (w) {
        width= w;
    }

    ichi = window.open(myURL, w_name,'toolbar=no,location=no,directories=no,left=300,top=100,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height+'');
    ichi.focus();
}


function set_css(id,css,ok)
{
    if (ok == 1) {
        id.className=css;    
    }
}


function over(id,name,ok){
    if (document.images && ok == 1) {
        document.images[id].src = eval(name+".src");
    }
    return false;
}
