function open__link(file, width, height)
{
	wx = (screen.availWidth - width)/2;
	wy = (screen.availHeight - height)/2;

	window.open(file, "_blank", "width="+width+",height="+height+",status=yes,location=yes,resizable=1,scrollbars=0,toolbar=yes,menubar=yes,left="+wx+",top="+wy);
}
