function mOvr(src,clrOver)
    { if (!src.contains(event.fromElement))
        { src.style.cursor = 'hand'; src.bgColor = clrOver; }
    }

function mOut(src,clrIn)
    { if (!src.contains(event.toElement))
        { src.style.cursor = 'default';
          src.bgColor = clrIn; }
    }

function mClk(src)
    { if(event.srcElement.tagName=='TD')
        { src.children.tags('A')[0].click(); }
    }

function makeWin(){
updateWindow = window.open('flyer.html','request','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=310,height=278');
}

function movein(which,html){
which.style.background='#FFE8B3'
if (document.getElementById)
document.getElementById("boxdescription").innerHTML=html
else
boxdescription.innerHTML=html
}

function moveout(which){
which.style.background='#CCE8B3'
if (document.getElementById)
document.getElementById("boxdescription").innerHTML='&nbsp;'
else
boxdescription.innerHTML='&nbsp;'
}


