var myWidth = 0, myHeight = 0;
    if( typeof( window.innerWidth ) == 'number' ) {
        //Non-IE
        myWidth = window.innerWidth;
        myHeight = window.innerHeight;
    } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
        //IE 6+ in 'standards compliant mode'
        myWidth = document.documentElement.clientWidth;
        myHeight = document.documentElement.clientHeight;
    } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
        //IE 4 compatible
        myWidth = document.body.clientWidth;
        myHeight = document.body.clientHeight;
    }
    if ( myWidth >= 1100 ) {
        ads();
    }
    //return [ myWidth, myHeight ];

function ads() {
                document.writeln("<div style='position:absolute;margin-left:5px;margin-top:165px;'>");
                document.writeln("<script type='text/javascript'><!--");
                document.writeln("google_ad_client = 'pub-5085457851818050';");
                document.writeln("/* 160x600, Erstellt 16.06.08 */");
                document.writeln("google_ad_slot = '2940341243';");
                document.writeln("google_ad_width = 160;");
                document.writeln("google_ad_height = 600;");
                document.writeln("//-->");
                document.writeln("<\/script>");
                document.writeln("<script type='text/javascript' src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>");
                document.writeln("<\/script>");
                document.writeln("</div>");
         }

