﻿function SetNavigation(HighlightThis)
{
//alert(HighlightThis);
//alert(document.getElementById(HighlightThis));
if(document.getElementById(HighlightThis)!=null)
{

    document.getElementById(HighlightThis).className = 'toolLinksel';
}
  /* for(var iLCount = 15;iLCount<20;iLCount++)
   {
    if(HighlightThis == "Div_"+iLCount)
    {
    //alert(HighlightThis);
    if(document.getElementById("Div_"+iLCount)!=null)
    document.getElementById("Div_"+iLCount).className = 'selected';
    }
   
   }*/
   }
   
   function SetImageSize()
   {
   
    var e = document.getElementsByTagName("img");
    var maxwidth=0;
    for(i=0;i<e.length;i++)
    {
        if(e[i].width>maxwidth)
         maxwidth = e[i].width;
    }
    document.getElementById('maxwidth').value = maxwidth;
    }