// µ¯³ö¾ÓÖÐµÄ´°¿Ú
function openGeneralWindow(openPath,width,height) {
	var screenWidth = screen.availWidth;
	var screenHeitht = screen.availHeight;
	var left = Math.ceil((screenWidth - width)/2);
	var top = Math.ceil((screenHeitht - height)/2);
	return (window.open(openPath,"","width="+width+"px, height="+height+"px,  status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,left="+left+",top="+top));
}