function openWindowCenter( url, width, height ) {

	var top = (screen.height-height)/2;
	var left = (screen.width-width)/2;

	window.open(url, '_blank', 'width='+width+', height='+height+', top='+top+', left='+left);
}