// JavaScript Document	
var currentURL = document.URL;

var myURL = "http://www.nehmzow.de/"+currentURL.substring(22, currentURL.length);

function fullscreen() {
    if(window.screen){
        var w = Math.round(screen.availWidth);
        var h = Math.round(screen.availHeight);
    }
    if(document.URL.indexOf('vaio')!=-1){ 
        var w = 1024; //
        var h = 768;  //
    }
    f=window.open(currentURL,'Fenster','width='+w+',height='+h+',toolbar=no,status=no,menubar=no,location=no,scrollbars=yes');
    f.moveTo(0,0);
    f.focus();
}
function getILikeItButton(left){
    //alert(myURL);
    //return;
    document.write("<iframe src=\"http://www.facebook.com/plugins/like.php?locale=en_US&href="+escape(myURL)+"&layout=standard&show_faces=false&width=360&action=like&colorscheme=light&height=24&font=arial\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:360px; height:24px; margin: 3px 0 0 "+left+"px;\" allowTransparency=\"true\" id=\"facebook-like\"></iframe>");
}
