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 over(id,name,ok){
    if (document.images && ok == 1) {
        document.images[id].src = eval(name+".src");
    }
    return false;
}


function set_css(id,css,ok)
{
    if (ok == 1) {
        id.className=css;    
    }
}


function myprint(name,w,h)
{
    myid = '';
    myre = '';
    myof = '';
    myla = '';

    if (document.forms[0].ID) {
        myid = document.forms[0].ID.value;
    }
    if (document.forms[0].RE) {
        myre = document.forms[0].RE.value;
    }
    if (document.forms[0].OF) {
        myof = document.forms[0].OF.value;
    }
    if (document.forms[0].LA) {
        myla = document.forms[0].LA.value;
    }

    erg = window.location.pathname.search(/popup/);

    if(erg != -1) {
        site = '../print/' + myid + ',' + myre + ',' + myof + ',' + myla + '.html';
    } else {
        site = 'print/' + myid + ',' + myre + ',' + myof + ',' + myla + '.html';
    }

    popUP(site,name,w,h);
}
