﻿function CutHTML(span,div)
{
    CopyHTML(span,div);
    span.innerHTML='';
}
function CopyHTML(span,div)
{
    div = document.getElementById(div);
    if(div==null)return;
    span = document.getElementById(span);
    if(span==null)return;
    div.innerHTML = span.innerHTML;
}
DI=document.images;
DIL=DI.length;
var lPath=window.location.href;
var i=lPath.lastIndexOf('/',lPath.length);
lPath=lPath.substr(0,i)+'/';
for(i=0; i<DIL; i++)
{
    //if (DI[i].src == lPath && DI[i].id != 'imgHit')
        DI[i].style.display = 'none';
}
