document.write (""); function rePosSuperBig(){ theObj = document.getElementById("superSmall"); theObj2 = document.getElementById("superBig"); var curleft = curtop = 0; if (theObj.offsetParent) { do { curleft += theObj.offsetLeft; curtop += theObj.offsetTop; } while (theObj = theObj.offsetParent); } if (navigator.appName.indexOf("Microsoft Internet")==-1){ theObj2.style.left = curleft + "px"; theObj2.style.top = curtop + "px"; }else{ theObj2.style.left = curleft + "px"; theObj2.style.top = curtop + "px"; } } function superExpand(){ rePosSuperBig(); document.getElementById('superBig').style.display=''; } function superShrink(){ document.getElementById('superBig').style.display='none'; }