function showPrint(id)
{
	return window.open("/sl/natisni/" + id,"MlekarnePrint","menubar=no,width=500,height=500,toolbar=no,scrollbars=yes");
}

function floow(value)
{
    if(value=="prev")
    {
	if(floowValues[floowCurrent-1])
	{
	    floowCurrent = floowCurrent-1;
	    floow(floowCurrent);
	}
    }

    if(value=="next")
    {
	if(floowValues[floowCurrent+1])
	{
	    floowCurrent = floowCurrent+1;
	    floow(floowCurrent);
	}
    }

    if(floowValues[value])
    {
	floowCurrent = value;
	$("floow").backgroundImage = "url('" + floowValues[value][0] + "');";
	$("floowbt").innerHTML = floowValues[value][1];
    }
}
