// JScript source code
function popitup(url,width,height,name)
{
    var newwindow=window.open(url,name,'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height+',left = 170,top = 240');
    if (window.focus) {newwindow.focus()}
}

function setField(field_name,val)
{
    window.opener.document.getElementById(field_name).innerHTML=val;
    window.close();
}