﻿// JScript File#
function hidediv(divid) 
{ 
    if (document.getElementById) 
    { // DOM3 = IE5, NS6 
        document.getElementById(divid).style.visibility = 'hidden'; 
        return false;
    } 
    else 
    { 
        return true;
    } 
} 

function showdiv(divid) 
{ 
    if (document.getElementById) 
    { // DOM3 = IE5, NS6 
        document.getElementById(divid).style.visibility = 'visible'; 
        return false;
    } 
    else 
    { 
        return true;
    } 
} 

function swapimages(imgid1, imgid2) 
{ 
    if (document.getElementById) 
    { // DOM3 = IE5, NS6 
        var tmp1 = document.getElementById(imgid1).src;
        tmp1 = tmp1.substring(0,tmp1.indexOf('?'));
        var tmp2 = document.getElementById(imgid2).src;
        tmp2 = tmp2.substring(0,tmp2.indexOf('?'));
        document.getElementById(imgid1).src = tmp2 + '?maxwidth=376';
    //    document.getElementById(imgid2).src = tmp1 + '?maxwidth=83';
        return false;
    }  
    else
    {
        return true;
    }
} 
