

function display(a, w, h, t)

    {

    var wi = parseInt(w) + 20;

    var he = parseInt(h) + 30;

    var win = window.open("", "display","toolbar=no,scrollbar=yes,resizable=no,left=150,top=50,width="+wi+",height="+he);

    win.document.writeln( "<html><head><title>"+t+"</title><body bgcolor=black><img src="+a+" onClick='self.close()'><br><br></body></html>" );

    }





function autor()

    {

    var a = "autor.html" //adres

    var w = 360         //width 

    var h = 440          //height

    var l = 200          //left margin

    var t = 150          //top margin

    okno = window.open("","autor","fullscreen,width="+w+",height="+h);     

    okno.blur()

    window.focus()       

    okno.resizeTo(w,h)

    okno.moveTo(l,t)

    var frameString=""+"<html>"+"<head>"+"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+"<frame name='top' src='"+a+"' scrolling=auto>"+"<frame name='bottom' src='about:blank' scrolling='no'>"+"</frameset>"+"</html>"

    okno.document.open();

    okno.document.write(frameString)

    okno.document.close()

    okno.focus()   

    window.onunload = function(){okno.close()}

    }

function addGoogle(title) {

	var googlebookmarks_link = 'http://www.google.com/bookmarks/mark?op=add&bkmk='+encodeURIComponent(location.href) + '&title=' + encodeURIComponent(title);

	document.location.href = googlebookmarks_link;

}


