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=no,resizable=0,scrollbars=1,toolbar=no,menubar=no,left="+wx+",top="+wy);
}
