
function right(){ 
if(!document.getElementById("ims").style.marginLeft){ marg = 0; } else { 
marg = parseInt(document.getElementById("ims").style.marginLeft); } 
marg -= 1; 
if(parseInt(width+marg)>parseInt(document.getElementById("holder").style.width)){ 
document.getElementById("ims").style.marginLeft = marg; } 
tout = setTimeout("right()",0); 
} 
function left(){ 
if(!document.getElementById("ims").style.marginLeft){ marg = 0; } else { 
marg = parseInt(document.getElementById("ims").style.marginLeft); } 
if(marg < 0){ 
marg += 1; 
document.getElementById("ims").style.marginLeft = marg; 
tout = setTimeout("left()",0); 
} 

}function pause(){ 
clearTimeout(tout) 
} 





/*******************************************/
function ClientSitePath_Function () { ClientSitePath.innerHTML = jsClientSitePath; }
function GetWidth()
{
        var x = 0;
        if (self.innerHeight)
        {
                x = self.innerWidth;
        }
        else if (document.documentElement && document.documentElement.clientHeight)
        {
                x = document.documentElement.clientWidth;
        }
        else if (document.body)
        {
                x = document.body.clientWidth;
        }
        return x;
}


