function startMain(search) {
    keyword = document.getElementsByName('q')[0];
    keyword.onfocus = function(){
        if(keyword.value==search){keyword.value='';}
    }
    keyword.onblur = function(){
        if(keyword.value==''){keyword.value=search;}
    }
    if (user = document.getElementsByName('user')[0]) {
        user.onfocus = function(){
            if(user.value=='User'){user.value='';}
        }
        user.onblur = function(){
            if(user.value==''){user.value='User';}
        }
        pass = document.getElementsByName('pass')[0];
        pass.onfocus = function(){
            if(pass.value=='Pass'){pass.value='';}
        }
        pass.onblur = function(){
            if(pass.value==''){pass.value='Pass';}
        }
    }
    
    var mainhead = document.getElementById("mainhead");
    if (mainhead && mainhead.offsetHeight != 52) {
        mainhead.className = 'replace';
        mainhead.style.paddingTop = "52px";
        
        img = new Image();
        img.src = '/cache/headlines/' + mainhead.title + '.gif';
        img.onload = function() {
            mainhead.style.backgroundImage = 'url(' + img.src + ')';
            mainhead.style.width = img.width + "px";
            mainhead.style.paddingTop = img.height + "px";
        };
    }
}

<!--
google_ad_client = "pub-4787322758897099";
/* 728x90, Erstellt 21.12.08 */
google_ad_slot = "1313829508";
google_ad_width = 728;
google_ad_height = 90;
//-->