/*
 
Places and resizes clickable left- and right banner

*/

function WallpaperSetup()
{
    if (navigator.appVersion.indexOf("opera") == -1)
    {
        // Setup general values
        var ContentWidth = window.document.body.clientWidth;
        var ContentHeight = document.documentElement.scrollHeight;
        var BodyWidth = document.getElementById('master').offsetWidth;
        var AdWidth = (ContentWidth - BodyWidth) / 2;
    
        // Setup left banner div
        if(document.getElementById('imgDotClearLeft') != null)
        {
            document.getElementById('imgDotClearLeft').width = AdWidth - 5;
            document.getElementById('imgDotClearLeft').height = ContentHeight;
        }
        
        // Setup right banner div
        if(document.getElementById('imgDotClearRight') != null)
        {
            document.getElementById('divRightAd').style.left = BodyWidth + AdWidth + 'px';
            document.getElementById('imgDotClearRight').width = AdWidth;
            document.getElementById('imgDotClearRight').height = ContentHeight;
        }
    }
}        

function ClickAd(url)
{
  window.open(url,"ClickAd","");
}
