var oUploadPopUpWin=0;
	function oUploadPopUpWindow(URLStr, left, top, width, height) {
		if (left == 'mid') {
			left = (screen.width-width)/2
		}
		if (top == 'mid') {
			top = (screen.height-height)/2
		}
		if(oUploadPopUpWin) {
			if(!oUploadPopUpWin.closed) oUploadPopUpWin.close();
		}
		oUploadPopUpWin = open(URLStr, 'oUploadPopUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	}
