/**
* Opens Report Broken Link window
*
* @param int id link id
*/
function reportBrokenLink(id)
{
	var w = 450;
	var h = 150;
	var left = (screen.width - w) / 2;
	var top = (screen.height - h) / 2;

	var win = window.open('report-link.php?id=' + id, 'report_broken', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=1,width=' + w + ',height=' + h + ',left=' + left + ',top=' + top);
	if (window.focus)
	{
		win.focus();
	}
}
