/* site specific scripts */

function siteInit(){
  // Called with the body onload event.
  // Customise according to site requirements.
}
function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}

