
function NewAdminWindow(mypage,myname)
{
	w = screen.width * 80 / 100;
	h = screen.height * 80 / 100;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/1 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=no, directories=no, status=yes';
	window.open(mypage,myname,settings);
}

function NewPubWindow(mypage,myname)
{
	w = screen.width * 80 / 100;
	h = screen.height * 80 / 100;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/1 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=no, directories=no, status=yes';
	window.open(mypage,myname,settings);
}

function HTPaneLoadContent(pane_id, pane_url, content_title)
{
	paneSplitter.loadContent(pane_id,pane_url);
	paneSplitter.showContent(pane_id); 
	paneSplitter.setContentTitle(pane_id, content_title);
	return false;
}

/*
openPage('center','asstdet_details','<?=ADMIN_HTJX_ACCTDET_DETAILS?><?=$link_args?>','<?=$_lclang->Translate("asstdet_details")?>','<?=$_lclang->Translate("asstdet_details_new")?>')
*/
function HTWindowReload(url)
{
	window.location.href = url;
}