function brokenLink(hlink,hpage)
{
   if (confirm("Broken Link Report:\n\nPage:  " + hpage + "\nLink:    " + hlink + "\n\nClick OK to send..."))
   {
      window.document.broken_link_form.Page.value = hpage;
      window.document.broken_link_form.Link.value = hlink;
      window.document.broken_link_form.submit();
   }
}




function colorGoogle()
{
   window.document.getElementById('gg1').style.color = "#44aaff"; //G
   window.document.getElementById('gg2').style.color = "#EFBD86"; //o
   window.document.getElementById('gg3').style.color = "#FBE058"; //o
   window.document.getElementById('gg4').style.color = "#44aaff"; //g
   window.document.getElementById('gg5').style.color = "#99FF9D"; //l
   window.document.getElementById('gg6').style.color = "#EFBD86"; //e
}
function uncolorGoogle()
{
   window.document.getElementById('gg1').style.color = "#0000ff";
   window.document.getElementById('gg2').style.color = "#E23B23";
   window.document.getElementById('gg3').style.color = "#FACE05";
   window.document.getElementById('gg4').style.color = "#0000ff";
   window.document.getElementById('gg5').style.color = "#47C24E";
   window.document.getElementById('gg6').style.color = "#E23B23";
}

