// Script Source: insighteye.com
// Copyright 2005
// Do not remove this notice.
function checkCheckBox(f){
if (f.agree.checked == false )
{
alert("Please tick the 'I Accept' box to continue");
return false;
}else
return true;
}

// Script © LittleFish Web Design 2005
function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;
