function show_image(x){
	typ = "scrollbars=0,resizable=0,";
	href = "view.php?id="+x;
	ok = open(href,"",typ);
}

function recommend(href) {
	var link = '/polec/index/link/'+href;
	otworz(link,'530','580','auto');
}

function otworz(url, rozmx, rozmy, scrolls) {
    mywin=window.open(url,'window','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scrolls+',resizable=1,copyhistory=0,width='+rozmx+',height='+rozmy+',screenX=100,screenY=75,left=100,top=75');
    mywin.focus();
}

function addSite() {
   var adres=document.location;
    var tytul=document.title ;
    //FireFox
    if (window.sidebar) {
        window.sidebar.addPanel(tytul, adres, "");
    //IE
    } else if (window.external) {
        window.external.AddFavorite(adres, tytul); 
    //Opera
    } else if (window.opera && window.print) {
        var a = document.createElement('a');
        a.setAttribute('href', adres);
        a.setAttribute('title', tytul);
        a.setAttribute('rel','sidebar');
        a.click();
    }
}

