// JavaScript Document

	
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=600&fixheight=464&cache=0';
        document.getElementById(imgid1).style.display = 'block'
        document.getElementById('Rotator').style.display = 'none';
    //    document.getElementById(imgid2).src = tmp1 + '?maxwidth=83';
        return false;
    }  
    else
    {
        return true;
    }
} 
