function displayPopup() { var div = document.createElement('DIV'); var body = document.getElementsByTagName('body')[0]; div.style.position = 'absolute'; //div.style.width = '100%'; div.style.top = '0'; div.style.left = '0'; div.style.backgroundColor = "#ffffff"; div.style.opacity = '0.95'; div.style.MozOpacity = '0.95'; div.style.filter ="progid:DXImageTransform.Microsoft.Alpha(opacity=95)"; div.innerHTML = messageHtml(); resizeDiv(div, body); body.appendChild(div); if (div.addEventListener) { div.addEventListener('click', function(){closePopup(div)}, false); window.addEventListener('resize', function(){resizeDiv(div, body)}, false); } else if (div.attachEvent) { div.attachEvent('onclick', function(){closePopup(div)}); body.attachEvent('onclick', function(){closePopup(div)}); window.attachEvent('onresize', function(){resizeDiv(div, body)}); } } function resizeDiv(div, body) { div.style.width = body.scrollWidth + 'px'; div.style.height = body.scrollHeight + 'px'; } function closePopup(div) { div.parentNode.removeChild(div); } function messageHtml() { return '' + '

Important notice about this website for USA residents:

' + '

This website is about importing used cars from Japan.
' + 'Because of laws and regulations, this is not commonly done in the USA.

' + '

However, USA residents may enjoy the following site....

' + '

www.AllYourPrices.com

' + '

Compare prices from 80 online stores.

' + '

Your guide to better shopping™.
+ Interactive buyers guides.
+ Product review.
+ Store reviews.

' + '

Click anywhere on the page to close this message.

' + '
'; } if (window.addEventListener) { window.addEventListener('load', displayPopup, false); } else if (window.attachEvent) { window.attachEvent('onload', displayPopup); }