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 wbmpopup(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+"'></a></div></body></html>");
    _popup.document.close();
}

function show(showImage, maxImages){
	for(i=1;i<maxImages+1;i++){
		state = "none";
		element = document.getElementById("image"+i);
		if(showImage==i){
			state = "block";
		}
		element.style.display=state;
	}
}





