document.write ("
");
function rePosad300Small(){
theObj = document.getElementById("ad300Small");
theObj2 = document.getElementById("ad300Big");
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 - 200 + "px";
theObj2.style.top = curtop + "px";
}else{
theObj2.style.left = curleft - 199 + "px";
theObj2.style.top = curtop + "px";
}
}
function ad300Expand(){
rePosad300Small();
document.getElementById('ad300Big').style.display='';
}
function ad300Shrink(){
document.getElementById('ad300Big').style.display='none';
}