function popup(ime,x,y,text) {
    eval("_popup=window.open('','_blank','toolbar=no,screenX=150,screenY=30,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+ x +",height="+ y +"')");
    _popup.document.write("<html><body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 style='overflow:hidden'><div style='width:100%,height:100%,overflow:hidden;'><a href='javascript:window.close();'><img src='"+ime+"'  border='0' width='"+ x +"' height='"+ y+"' title='"+text+"' alt=''></a></div></body></html>");
    _popup.document.close();
    
}

function newWin(url) {
	window.open(url, '_blank');
	return false;
}

function bookmarksite(title, url) { 
	if (document.all) window.external.AddFavorite(url, title); 
	else if (window.sidebar) window.sidebar.addPanel(title, url, "") 
}
	
