



var bodyfrm = ( document.compatMode.toLowerCase()=="css1compat" ) ? document.documentElement : document.body;

var adst = document.getElementById("ShowAD").style;

adst.top = ( bodyfrm.clientHeight - 140 ) ;

adst.left = ( bodyfrm.clientWidth - 220 );

function moveR() {

    adst.top = ( bodyfrm.scrollTop + bodyfrm.clientHeight - 140 );

    adst.left = ( bodyfrm.scrollLeft + bodyfrm.clientWidth - 220 );

}

setInterval("moveR();", 80);

function CloseIVR(){

    adst.display='none';

}


