// JavaScript Document
function popup(name, url, width, height) {
theWin=window.open(url,name,'toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=' + width +',height=' + height + ',top=50,left=50');
}
function popup_nos(name, url, width, height) {
theWin=window.open(url,name,'toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=no,resizable=yes,width=' + width +',height=' + height + ',top=0,left=0');
}

function inject(req) {
        window.opener.location.href = "index.php?page=main&" + req;
        window.close();
}

