﻿/* Left Nav Toggle on/off Visibility */
function LNavToggle_Visibility(id) 
{
   if (document != null)
   {
       var ul = document.getElementById('LNav_' + id);
       var a = document.getElementById('LNavA_' + id);
       if (ul != null && a != null)
       {
           if(ul.style.display == 'block')
           {
              ul.style.display = 'none';
              a.innerHTML = 'show more ...';
           }
           else
           {
              ul.style.display = 'block';          
              a.innerHTML = 'show less ...';
           }
       }
   }
}

/* Product List Dropdown boxes */
function ReDirectDropDown(obj)
{ 
   if (document != null && obj != null && obj.name != null)
   {
        var control = document.getElementById(obj.name);
        if (control != null)
            document.location.href = control.options[control.options.selectedIndex].value;
   }
}

/* MISC */
function ImageChange (obj, newImageSrc)
{
   if (document != null && obj != null && obj.name != null)
   {
        obj.src = newImageSrc;
   }
}

document.forms[0].action='';
