function centeredPopup(page, width, height, options)
{
	var top=(screen.height-height)/2;
	var left=(screen.width-width)/2;
	
	window.open(page,"","top="+top+",left="+left+",width="+width+",height="+height+","+options);
}
