function setupIBSPopup() { var screenWidth = 0; if (parseInt(navigator.appVersion)>3) { if (navigator.appName=="Netscape") { screenWidth = window.innerWidth; } if (navigator.appName.indexOf("Microsoft")!=-1) { screenWidth = document.body.offsetWidth; } } var newDiv = document.createElement("div"); newDiv.setAttribute("id","IBS_DIV_COMESEEUS"); newDiv.style.position = "absolute"; newDiv.style.display = "inline"; newDiv.style.left = ((screenWidth/2 - 200)) + "px"; newDiv.style.top = "20px"; newDiv.width = "399px"; newDiv.height = "400px"; newDiv.style.border = "1px black solid"; newDiv.style.cursor = "pointer"; newDiv.innerHTML = "\"Close
\"International
\"Be
W1441
\"BUILDERSSHOW.COM\"
"; document.getElementById("IBS_Popup_Div").appendChild(newDiv); } function IBS_sendToVB() { window.open('http://www.buildersshow.com//'); } function IBS_windowClose() { var newDiv = document.getElementById("IBS_DIV_COMESEEUS"); newDiv.style.display = "none"; } window.onload = setupIBSPopup;