function openEditor(id){
var width = 600;
	var height = 400;
	var properties = "width="
	        +width+",height="
					+height+", toolbar=no,status=no,resizable=yes,scrollbars=yes";
	var screenY = window.screen.availHeight;
	var screenX = window.screen.availWidth;
	var leftvar = Math.round((screenX - width) / 2);
	var rightvar = Math.round((screenY - height) / 2);
	properties += ",left=" + leftvar +",top=" + rightvar;
	popupHandle = window.open( '/lib/ceditor.asp?id='+id, 'WebFormBrowser', properties);
	setTimeout('popupHandle.focus();',250);
}
function openItemEditor(query){

var width = 600;
	var height = 600;
	var properties = "width="
	        +width+",height="
    	+height+", toolbar=no,status=no,resizable=yes,scrollbars=yes";
	var screenY = window.screen.availHeight;
	var screenX = window.screen.availWidth;
	var leftvar = Math.round((screenX - width) / 2);
	var rightvar = Math.round((screenY - height) / 2);
	properties += ",left=" + leftvar +",top=" + rightvar;
	popupHandle = window.open( '/lib/editor.php?'+query, 'WebFormBrowser', properties);
	setTimeout('popupHandle.focus();',250);

}
