// JavaScript Document
<!-- Hide from old browser
function dowebadminpopup( url, width, height, scrollbars, resizable, toolbar, menubar, location, status ) {
	var win = window.open( url, "_blank", "toolbar=" + ((toolbar) ? 1 : 0) + ",resizable=" + ((!resizable) ? 1 : 0) + 
			  ",scrollbars=" + ((scrollbars) ? 1 : 0) + ",height=" + height + ",width=" + width + ",menubar=" + 
			  ((menubar) ? 1 : 0) + ",location=" + ((location) ? 1 : 0) + ",status=" + ((status) ? 1 : 0) + "" );
	win.focus();
}


