/**
* 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();
	}
}
function selectAll(textareaname) {
  var txtBuffer=eval("document."+textareaname)
  txtBuffer.focus() 
  txtBuffer.select() 
  if (document.all){ 
   var selText=txtBuffer.createTextRange() 
   selText.execCommand("Copy") 
   alert("This code has been copied to your clipboard.\nOpen your favorite editor and paste it in.\nIt\'s as simple as that.");
 }
}
