// JavaScript Document
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();
	}
function popup(url,width,height)
{
	unik=new Date();
	unik=unik.getSeconds()+"_"+unik.getMinutes()+"_"+unik.getHours();
	stuff = "toolbar=no,menubar=no,scrollbars=yes,resizable=no,width= " +width + ", height = " +height
	window.open(url , unik , stuff );
}

