
function genericPopup(url, name, width, height, resizable, scrollbars, toolbar, location, status, location, menubar, top, left) {
	if (! url ) return false;
	if (! name ) name = "blank";
	if (! width ) width = 625;
	if (! height ) height = 675;
	if (! resizable ) resizable = "yes";
	if (! scrollbars ) scrollbars = "yes";
	if (! toolbar ) toolbar = "no";
	if (! status ) status = "no";
	if (! location ) location = "no";
	if (! menubar ) menubar = "no";
	if (! top ) top = 10;
	if (! left ) left = 10;
	window.open(url,name,"',width=" + width + ",height=" + height + ",resizable=" + resizable + ",scrollbars=" + scrollbars + ",toolbar=" + toolbar + ",status=" + status + ",location=" + location + ",menubar=" + menubar + ",top=" + top + ",left=" + left + "'");
}
