function openDumper()
{
  x=(screen.width-500)/2
  y=(screen.height-420)/2

  open("/admin/dumper.php" , "dumper" , "menubar=no, toolbar=no, width=500, height=330, status=yes, resizable=no, top="+y+", left="+x);
}

function openMessenger(flag)
{
  x=(screen.width-700)/2
  y=(screen.height-600)/2

	if (flag)  open("/messenger/view.php?mode=unread" , "messenger" , "menubar=no, toolbar=no, width=700, height=510, status=yes, resizable=no, top="+y+", left="+x);
	if (!flag) open("/messenger/index.php"            , "messenger" , "menubar=no, toolbar=no, width=700, height=510, status=yes, resizable=no, top="+y+", left="+x);
}

function openPage() {

	x=(screen.width-700)/2
	y=(screen.height-500)/2
                                                                 //dialog=yes, modal=yes,
	
	var newid = document.getElementById('newid');
	
	if (newid) id = "&id=" + newid.value; else id = "";
	
  window.open("/admin/modal/process.php?action=load" + id , "fbr" , "menubar=no, toolbar=no, width=700, height=500, resizable=no, status=yes, top="+y+", left="+x);
	
}

function cmsOut_writeHere(text) {

	var body = document.getElementById('body');
	
	body.innerHTML += text;

}

function openManager() {
	
	x=(screen.width-760)/2
	y=(screen.height-600)/2
	
	window.open('/admin/modal/browser.php?brtype=file&fieldXName=null' , '_manager' , 'menubar=no, toolbar=no, width=761, height=510, resizable=no, status=yes, top='+y+', left='+x);
	
}
