function addbookmark()
{
bookmarkurl="http://www.DJHSolutions.co.uk"
bookmarktitle="DJHSolutions: SEO, web design & systems"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

function loadcheck()
{
}
/*
var msg="Copyright © 2007 Djh Solutions";

function disableIE() 
{if (document.all) 
{alert(msg);return false;}
}

function disableNS(e) {
  if (document.layers||(document.getElementById&&!document.all)) {
    if (e.which==2||e.which==3) {alert(msg);return false;}
  }
}
if (document.layers) {
  document.captureEvents(Event.MOUSEDOWN);document.onmousedown=disableNS;
} else {
  document.onmouseup=disableNS;document.oncontextmenu=disableIE;
}
document.oncontextmenu=new 
Function("alert(msg);return false")
}
*/
function CopyToClipboard(ConnectionStringCell) 
{
    TmpHolderTextArea = document.getElementById("TmpHolderTextArea");
    TmpHolderTextArea.innerText = ConnectionStringCell.innerText;
    Copied = TmpHolderTextArea.createTextRange();
    Copied.execCommand("RemoveFormat");
    Copied.execCommand("Copy");
}


