/*
try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}
*/

// JScript File
function ckbxBestPracticeDisable(){

if (document.all.bestpractice2.checked)
{
    // uncheck
    document.all.bestpractice3.checked = false;
    document.all.bestpractice4.checked = false;
    document.all.bestpractice5.checked = false;
    //disable
    document.all.bestpractice3.disabled = true;
    document.all.bestpractice4.disabled = true;
    document.all.bestpractice5.disabled = true;
} else 
{
    document.all.bestpractice3.disabled = false;
    document.all.bestpractice4.disabled = false;
    document.all.bestpractice5.disabled = false;
}
    
}


//this function includes all necessary js files for the application
function include(file)
{

  var script  = document.createElement('script');
  script.src  = file;
  script.type = 'text/javascript';
  script.defer = true;

  document.getElementsByTagName('head').item(0).appendChild(script);

}

      function showImg(divId)
      {
      	document.getElementById(divId).style.visibility="visible";
      }
      function hideImg(divId)
      {
      	document.getElementById(divId).style.visibility="hidden";
      }

function OnChange(dropdown)
{
    var myindex  = dropdown.selectedIndex
    var SelValue = dropdown.options[myindex].value
    top.location.href = SelValue;
    
    return true;
}
/* include any js files here */
include('js/galink.js');
include('js/font-size.js');


