// JavaScript Document

	
function swapimages(imgid1, imgid2) 
{ 
    if (document.getElementById) 
    { // DOM3 = IE5, NS6 
        var tmp1 = document.getElementById(imgid1).src;
    //    alert(tmp1);
    //    alert(imgid2);
    //    tmp1 = tmp1.substring(0,tmp1.indexOf('?'));
        document.getElementById(imgid1).src = imgid2;
    //    document.getElementById(imgid2).src = tmp1 + '?maxwidth=83';
        return false;
    }  
    else
    {
        return true;
    }
} 
