// JavaScript Document
function popup(name, url, width, height) {
	theWin=window.open(url,name,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + width +',height=' + height + ',top=75,left=250');
	if (window.focus) {theWin.focus()}
		return false;
	}

function popup_nos(name, url, width, height) {
	theWin=window.open(url,name,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=' + width +',height=' + height + ',top=75,left=250');
	if (window.focus) {theWin.focus()}
		return false;
	}

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