
function admin_highlight(element) {
  document.getElementById(element+'_admin_highlight_area').style.backgroundColor="gray";
}
function admin_unhighlight(element) {
  document.getElementById(element+'_admin_highlight_area').style.backgroundColor="";
}
function loadAdminPage(page) {
  document.location = page;
}

function admin_load_page(url) {
	//alert(url);

	document.location = url;
  //openEditField(url);
}

function openEditField( page, width, height )
{
   if (!width)
     width=700;
   if (!height)
     height = 350;
   page = "/uploader/popup.php"+page.substr(page.indexOf("?"));
   popup = window.open( page, 'win', 'toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+',screenx=150,screeny=150' );
   //popup = window.open( page, 'win', 'toolbar=yes,location=yes,directories=yes,status=yes,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+',screenx=150,screeny=150' );
   if (popup.focus)
     popup.focus();
}

