function open_center(url, name, params, Wwidth, Wheight) {
	Swidth = screen.width;
	Sheight = screen.height;

	Wleft = (Swidth / 2) - (Wwidth / 2) - 8;
	Wtop = (Sheight / 2) - (Wheight / 2) - 20;

	if(Wwidth>screen.width){
		Wwidth=790;
		Wheight=533;
		params='scrollbars=yes,statusbar=no,status=no,links=no,toolbars=no,location=no';
		Wleft = 0;
		Wtop = 0;
	}

	params = params+",left="+Wleft+",top="+Wtop+",width="+Wwidth+",height="+Wheight;

	window.open(url, name, params);
}