function OpenWindow(target, width, height){
	var left = (screen.width-width) / 2;
	var top = (screen.height-height) / 2;
	var newWindow = window.open(target, 'Information','width='+width+',height='+height+',left='+left+',top='+top);
}