function openCenterWindow(file, name, width, height, options) {
	leftVal = (screen.width - width) / 2;
	topVal = (screen.height - height) / 2;
	window.open(file, name, 'width='+width+',height='+height+',left='+leftVal+',top='+topVal+','+options);

}
