/**********************************************************************
TERMS OF USE - EASING EQUATIONS
Open source under the BSD License.
Copyright (c) 2001 Robert Penner
JavaScript version copyright (C) 2006 by Philippe Maegerman
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

   * Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
   * Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
   * Neither the name of the author nor the names of contributors may
be used to endorse or promote products derived from this software
without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

*****************************************/
function Delegate() {}
Delegate.create = function (o, f) {
	var a = new Array() ;
	var l = arguments.length ;
	for(var i = 2 ; i < l ; i++) a[i - 2] = arguments[i] ;
	return function() {
		var aP = [].concat(arguments, a) ;
		f.apply(o, aP);
	}
}

Tween = function(obj, prop, func, begin, finish, duration, suffixe){
	this.init(obj, prop, func, begin, finish, duration, suffixe)
}
var t = Tween.prototype;

t.obj = new Object();
t.prop='';
t.func = function (t, b, c, d) { return c*t/d + b; };
t.begin = 0;
t.change = 0;
t.prevTime = 0;
t.prevPos = 0;
t.looping = false;
t._duration = 0;
t._time = 0;
t._pos = 0;
t._position = 0;
t._startTime = 0;
t._finish = 0;
t.name = '';
t.suffixe = '';
t._listeners = new Array();	
t.setTime = function(t){
	this.prevTime = this._time;
	if (t > this.getDuration()) {
		if (this.looping) {
			this.rewind (t - this._duration);
			this.update();
			this.broadcastMessage('onMotionLooped',{target:this,type:'onMotionLooped'});
		} else {
			this._time = this._duration;
			this.update();
			this.stop();
			this.broadcastMessage('onMotionFinished',{target:this,type:'onMotionFinished'});
		}
	} else if (t < 0) {
		this.rewind();
		this.update();
	} else {
		this._time = t;
		this.update();
	}
}
t.getTime = function(){
	return this._time;
}
t.setDuration = function(d){
	this._duration = (d == null || d <= 0) ? 100000 : d;
}
t.getDuration = function(){
	return this._duration;
}
t.setPosition = function(p){
	this.prevPos = this._pos;
	var a = this.suffixe != '' ? this.suffixe : '';
	this.obj[this.prop] = Math.round(p) + a;
	this._pos = p;
	this.broadcastMessage('onMotionChanged',{target:this,type:'onMotionChanged'});
}
t.getPosition = function(t){
	if (t == undefined) t = this._time;
	return this.func(t, this.begin, this.change, this._duration);
};
t.setFinish = function(f){
	this.change = f - this.begin;
};
t.geFinish = function(){
	return this.begin + this.change;
};
t.init = function(obj, prop, func, begin, finish, duration, suffixe){
	if (!arguments.length) return;
	this._listeners = new Array();
	this.addListener(this);
	if(suffixe) this.suffixe = suffixe;
	this.obj = obj;
	this.prop = prop;
	this.begin = begin;
	this._pos = begin;
	this.setDuration(duration);
	if (func!=null && func!='') {
		this.func = func;
	}
	this.setFinish(finish);
}
t.start = function(){
	this.rewind();
	this.startEnterFrame();
	this.broadcastMessage('onMotionStarted',{target:this,type:'onMotionStarted'});
	//alert('in');
}
t.rewind = function(t){
	this.stop();
	this._time = (t == undefined) ? 0 : t;
	this.fixTime();
	this.update();
}
t.fforward = function(){
	this._time = this._duration;
	this.fixTime();
	this.update();
}
t.update = function(){
	this.setPosition(this.getPosition(this._time));
	}
t.startEnterFrame = function(){
	this.stopEnterFrame();
	this.isPlaying = true;
	this.onEnterFrame();
}
t.onEnterFrame = function(){
	if(this.isPlaying) {
		this.nextFrame();
		setTimeout(Delegate.create(this, this.onEnterFrame), 0);
	}
}
t.nextFrame = function(){
	this.setTime((this.getTimer() - this._startTime) / 1000);
	}
t.stop = function(){
	this.stopEnterFrame();
	this.broadcastMessage('onMotionStopped',{target:this,type:'onMotionStopped'});
}
t.stopEnterFrame = function(){
	this.isPlaying = false;
}

t.continueTo = function(finish, duration){
	this.begin = this._pos;
	this.setFinish(finish);
	if (this._duration != undefined)
		this.setDuration(duration);
	this.start();
}
t.resume = function(){
	this.fixTime();
	this.startEnterFrame();
	this.broadcastMessage('onMotionResumed',{target:this,type:'onMotionResumed'});
}
t.yoyo = function (){
	this.continueTo(this.begin,this._time);
}

t.addListener = function(o){
	this.removeListener (o);
	return this._listeners.push(o);
}
t.removeListener = function(o){
	var a = this._listeners;	
	var i = a.length;
	while (i--) {
		if (a[i] == o) {
			a.splice (i, 1);
			return true;
		}
	}
	return false;
}
t.broadcastMessage = function(){
	var arr = new Array();
	for(var i = 0; i < arguments.length; i++){
		arr.push(arguments[i])
	}
	var e = arr.shift();
	var a = this._listeners;
	var l = a.length;
	for (var i=0; i<l; i++){
		if(a[i][e])
		a[i][e].apply(a[i], arr);
	}
}
t.fixTime = function(){
	this._startTime = this.getTimer() - this._time * 1000;
}
t.getTimer = function(){
	return new Date().getTime() - this._time;
}
Tween.backEaseIn = function(t,b,c,d,a,p){
	if (s == undefined) var s = 1.70158;
	return c*(t/=d)*t*((s+1)*t - s) + b;
}
Tween.backEaseOut = function(t,b,c,d,a,p){
	if (s == undefined) var s = 1.70158;
	return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
}
Tween.backEaseInOut = function(t,b,c,d,a,p){
	if (s == undefined) var s = 1.70158; 
	if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
	return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
}
Tween.elasticEaseIn = function(t,b,c,d,a,p){
		if (t==0) return b;  
		if ((t/=d)==1) return b+c;  
		if (!p) p=d*.3;
		if (!a || a < Math.abs(c)) {
			a=c; var s=p/4;
		}
		else 
			var s = p/(2*Math.PI) * Math.asin (c/a);
		
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	
}
Tween.elasticEaseOut = function (t,b,c,d,a,p){
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (!a || a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return (a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b);
	}
Tween.elasticEaseInOut = function (t,b,c,d,a,p){
	if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) var p=d*(.3*1.5);
	if (!a || a < Math.abs(c)) {var a=c; var s=p/4; }
	else var s = p/(2*Math.PI) * Math.asin (c/a);
	if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
}

Tween.bounceEaseOut = function(t,b,c,d){
	if ((t/=d) < (1/2.75)) {
		return c*(7.5625*t*t) + b;
	} else if (t < (2/2.75)) {
		return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
	} else if (t < (2.5/2.75)) {
		return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
	} else {
		return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
	}
}
Tween.bounceEaseIn = function(t,b,c,d){
	return c - Tween.bounceEaseOut (d-t, 0, c, d) + b;
	}
Tween.bounceEaseInOut = function(t,b,c,d){
	if (t < d/2) return Tween.bounceEaseIn (t*2, 0, c, d) * .5 + b;
	else return Tween.bounceEaseOut (t*2-d, 0, c, d) * .5 + c*.5 + b;
	}

Tween.strongEaseInOut = function(t,b,c,d){
	return c*(t/=d)*t*t*t*t + b;
	}

Tween.regularEaseIn = function(t,b,c,d){
	return c*(t/=d)*t + b;
	}
Tween.regularEaseOut = function(t,b,c,d){
	return -c *(t/=d)*(t-2) + b;
	}

Tween.regularEaseInOut = function(t,b,c,d){
	if ((t/=d/2) < 1) return c/2*t*t + b;
	return -c/2 * ((--t)*(t-2) - 1) + b;
	}
Tween.strongEaseIn = function(t,b,c,d){
	return c*(t/=d)*t*t*t*t + b;
	}
Tween.strongEaseOut = function(t,b,c,d){
	return c*((t=t/d-1)*t*t*t*t + 1) + b;
	}

Tween.strongEaseInOut = function(t,b,c,d){
	if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
	return c/2*((t-=2)*t*t*t*t + 2) + b;
	}

	function dateinbar()
/**********************************************************************
Commax <h6>снят с производства</h6> вместо последний </h5> 
*****************************************/
{
if ( t == "AP-2RS")
{cena="<h5><u>'678,00</u>&nbsp;/&nbsp;<u>'723,00</u>&nbsp;/&nbsp;<u>'840,00</u></h5></h5>"}
if ( t == "AP-480AL")
{cena="<h5><u>1'020,00</u>&nbsp;/&nbsp;<u>1'088,00</u>&nbsp;/&nbsp;<u>1'290,00</u></h5></h5>"}
if ( t == "AP-481L")
{cena="<h5><u>2'427,00</u>&nbsp;/&nbsp;<u>2'590,00</u>&nbsp;/&nbsp;<u>3'030,00</u></h5></h5>"}
if ( t == "APV-480L")
{cena="<h5><u>2'850,00</u>&nbsp;/&nbsp;<u>3'202,00</u>&nbsp;/&nbsp;<u>3'750,00</u></h5></h5>"}
if ( t == "APV-480LD")
{cena="<h5><u>2'970,00</u>&nbsp;/&nbsp;<u>3'337,00</u>&nbsp;/&nbsp;<u>3'930,00</u></h5></h5>"}
if ( t == "APV-481FL")
{cena="<h5><u>3'765,00</u>&nbsp;/&nbsp;<u>4'018,00</u>&nbsp;/&nbsp;<u>4'710,00</u></h5></h5>"}
if ( t == "APV-481L")
{cena="<h5><u>3'465,00</u>&nbsp;/&nbsp;<u>3'893,00</u>&nbsp;/&nbsp;<u>4'650,00</u></h5></h5>"}
if ( t == "APV-4CMD/2")
{cena="<h5><u>2'526,00</u>&nbsp;/&nbsp;<u>2'695,00</u>&nbsp;/&nbsp;<u>3'150,00</u></h5></h5>"}
if ( t == "APV-4CME/2")
{cena="<h5><u>2'772,00</u>&nbsp;/&nbsp;<u>2'958,00</u>&nbsp;/&nbsp;<u>3'480,00</u></h5></h5>"}
if ( t == "CAV-40S")
{cena="<h5><u>7'179,00</u>&nbsp;/&nbsp;<u>7'661,00</u>&nbsp;/&nbsp;<u>8'970,00</u></h5></h5>"}
if ( t == "CAV-50FS")
{cena="<h5><u>8'316,00</u>&nbsp;/&nbsp;<u>8'875,00</u>&nbsp;/&nbsp;<u>10'410,00</u></h5></h5>"}
if ( t == "CAV-501")
{cena="<h5><u>8'763,00</u>&nbsp;/&nbsp;<u>9'352,00</u>&nbsp;/&nbsp;<u>10'950,00</u></h5></h5>"}
if ( t == "CAV-501D")
{cena="<h5><u>9'603,00</u>&nbsp;/&nbsp;<u>10'248,00</u>&nbsp;/&nbsp;<u>12'000,00</u></h5></h5>"}
if ( t == "CAV-500D")
{cena="<h5><u>11'333,00</u>&nbsp;/&nbsp;<u>12'550,00</u>&nbsp;/&nbsp;<u>14'931,00</u></h5></h5>"}
if ( t == "CAV-502D")
{cena="<h5><u>9'504,00</u>&nbsp;/&nbsp;<u>10'143,00</u>&nbsp;/&nbsp;<u>11'880,00</u></h5></h5>"}
if ( t == "CAV-503D")
{cena="<h5><u>9'159,00</u>&nbsp;/&nbsp;<u>10'291,00</u>&nbsp;/&nbsp;<u>11'820,00</u></h5></h5>"}
if ( t == "CAV-50T")
{cena="<h5><u>8'550,00</u>&nbsp;/&nbsp;<u>9'500,00</u>&nbsp;/&nbsp;<u>10'224,00</u></h5></h5>"}
if ( t == "CAV-51SD")
{cena="<h5><u>8'514,00</u>&nbsp;/&nbsp;<u>9'086,00</u>&nbsp;/&nbsp;<u>10'650,00</u></h5></h5>"}
if ( t == "CAV-706D")
{cena="<h5><u>11'940,00</u>&nbsp;/&nbsp;<u>12'742,00</u>&nbsp;/&nbsp;<u>14'940,00</u></h5></h5>"}
if ( t == "CAV-70B")
{cena="<h5><u>10'140,00</u>&nbsp;/&nbsp;<u>10'900,00</u>&nbsp;/&nbsp;<u>11'373,00</u></h5></h5>"}
if ( t == "CAV-71B")
{cena="<h5><u>8'118,00</u>&nbsp;/&nbsp;<u>9'121,00</u>&nbsp;/&nbsp;<u>10'590,00</u></h5></h5>"}
if ( t == "CAV-72B")
{cena="<h5><u>10'149,00</u>&nbsp;/&nbsp;<u>11'403,00</u>&nbsp;/&nbsp;<u>13'020,00</u></h5></h5>"}
if ( t == "CBH-100")
{cena="<h5><u>13'515,00</u>&nbsp;/&nbsp;<u>14'423,00</u>&nbsp;/&nbsp;<u>16'890,00</u></h5></h5>"}
if ( t == "CCM-042C")
{cena="<h5><u>2'400,00</u>&nbsp;/&nbsp;<u>2'561,00</u>&nbsp;/&nbsp;<u>3'000,00</u></h5></h5>"}
if ( t == "CDP-1020HE")
{cena="<h5><u>41'340,00</u>&nbsp;/&nbsp;<u>44'119,00</u>&nbsp;/&nbsp;<u>51'690,00</u></h5></h5>"}
if ( t == "CDP-700MTE")
{cena="<h5><u>36'240,00</u>&nbsp;/&nbsp;<u>38'676,00</u>&nbsp;/&nbsp;<u>45'300,00</u></h5></h5>"}
if ( t == "CDS-480L")
{cena="<h5><u>7'770,00</u>&nbsp;/&nbsp;<u>8'292,00</u>&nbsp;/&nbsp;<u>9'720,00</u></h5></h5>"}
if ( t == "CDS-481L")
{cena="<h5><u>9'357,00</u>&nbsp;/&nbsp;<u>9'986,00</u>&nbsp;/&nbsp;<u>11'700,00</u></h5></h5>"}
if ( t == "CDS-MV")
{cena="<h5><u>12'360,00</u>&nbsp;/&nbsp;<u>13'191,00</u>&nbsp;/&nbsp;<u>15'450,00</u></h5></h5>"}
if ( t == "CDS-MVL")
{cena="<h5><u>23'265,00</u>&nbsp;/&nbsp;<u>24'829,00</u>&nbsp;/&nbsp;<u>29'070,00</u></h5></h5>"}
if ( t == "CDT-180")
{cena="<h5><u>3'162,00</u>&nbsp;/&nbsp;<u>3'374,00</u>&nbsp;/&nbsp;<u>3'960,00</u></h5></h5>"}
if ( t == "CDV-1020AQ")
{cena="<h5><u>25'494,00</u>&nbsp;/&nbsp;<u>28'644,00</u>&nbsp;/&nbsp;<u>32'250,00</u></h5></h5>"}
if ( t == "CDV-35N")
{cena="<h5><u>3'015,00</u>&nbsp;/&nbsp;<u>3'387,00</u>&nbsp;/&nbsp;<u>4'050,00</u></h5></h5>"}
if ( t == "CDV-35N/DRC-40CK")
{cena="<h5><u>4'950,00</u>&nbsp;/&nbsp;<u>5'561,00</u>&nbsp;/&nbsp;<u>6'570,00</u></h5></h5>"}
if ( t == "CDV-35N/DRC-4CP")
{cena="<h5><u>5'565,00</u>&nbsp;/&nbsp;<u>6'252,00</u>&nbsp;/&nbsp;<u>7'290,00</u></h5></h5>"}
if ( t == "CDV-4HC")
{cena="<h5><u>5'199,00</u>&nbsp;/&nbsp;<u>5'841,00</u>&nbsp;/&nbsp;<u>6'990,00</u></h5></h5>"}
if ( t == "CDV-50")
{cena="<h5><u>4'704,00</u>&nbsp;/&nbsp;<u>5'285,00</u>&nbsp;/&nbsp;<u>6'270,00</u></h5></h5>"}
if ( t == "CDV-50 память 1000")
{cena="<h5><u>7'200,00</u>&nbsp;/&nbsp;<u>9'500,00</u>&nbsp;/&nbsp;<u>11'250,00</u></h5></h5>"}
if ( t == "CDV-50/DRC-4CP")
{cena="<h5><u>7'185,00</u>&nbsp;/&nbsp;<u>8'073,00</u>&nbsp;/&nbsp;<u>9'210,00</u></h5></h5>"}
if ( t == "CDV-50 Coordinate NTSC")
{cena="<h5><u>7'884,00</u>&nbsp;/&nbsp;<u>8'800,00</u>&nbsp;/&nbsp;<u>9'300,00</u></h5></h5>"}
if ( t == "CDV-50D")
{cena="<h5><u>4'800,00</u>&nbsp;/&nbsp;<u>5'393,00</u>&nbsp;/&nbsp;<u>6'180,00</u></h5></h5>"}
if ( t == "CDV-50 Digital NTSC")
{cena="<h5><u>7'884,00</u>&nbsp;/&nbsp;<u>8'800,00</u>&nbsp;/&nbsp;<u>9'300,00</u></h5></h5>"}
if ( t == "CDV-50A")
{cena="<h5><u>5'298,00</u>&nbsp;/&nbsp;<u>5'952,00</u>&nbsp;/&nbsp;<u>7'050,00</u></h5></h5>"}
if ( t == "CDV-50A Digital")
{cena="<h5><u>8'400,00</u>&nbsp;/&nbsp;<u>9'000,00</u>&nbsp;/&nbsp;<u>9'912,00</u></h5></h5>"}
if ( t == "CDV-50A Coordinate")
{cena="<h5><u>8'400,00</u>&nbsp;/&nbsp;<u>9'000,00</u>&nbsp;/&nbsp;<u>9'912,00</u></h5></h5>"}
if ( t == "CDV-50A/M-XL")
{cena="<h5><u>11'634,00</u>&nbsp;/&nbsp;<u>12'952,00</u>&nbsp;/&nbsp;<u>13'725,00</u></h5></h5>"}
if ( t == "CDV-50A/M-VIZIT")
{cena="<h5><u>11'634,00</u>&nbsp;/&nbsp;<u>12'952,00</u>&nbsp;/&nbsp;<u>13'725,00</u></h5></h5>"}
if ( t == "CDV-50A/M")
{cena="<h5><u>7'179,00</u>&nbsp;/&nbsp;<u>8'066,00</u>&nbsp;/&nbsp;<u>9'300,00</u></h5></h5>"}
if ( t == "CDV-50A/M4")
{cena="<h5><u>9'210,00</u>&nbsp;/&nbsp;<u>10'348,00</u>&nbsp;/&nbsp;<u>11'940,00</u></h5></h5>"}
if ( t == "CDV-50A/MC")
{cena="<h5><u>10'320,00</u>&nbsp;/&nbsp;<u>11'595,00</u>&nbsp;/&nbsp;<u>13'545,00</u></h5></h5>"}
if ( t == "CDV-50A/MR")
{cena="<h5><u>10'320,00</u>&nbsp;/&nbsp;<u>11'595,00</u>&nbsp;/&nbsp;<u>13'545,00</u></h5></h5>"}
if ( t == "CDV-50/M")
{cena="<h5><u>8'880,00</u>&nbsp;/&nbsp;<u>9'977,00</u>&nbsp;/&nbsp;<u>11'655,00</u></h5></h5>"}
if ( t == "CDV-50/MC NTSC")
{cena="<h5><u>9'150,00</u>&nbsp;/&nbsp;<u>10'280,00</u>&nbsp;/&nbsp;<u>12'030,00</u></h5></h5>"}
if ( t == "CDV-50/MR NTSC")
{cena="<h5><u>9'150,00</u>&nbsp;/&nbsp;<u>10'280,00</u>&nbsp;/&nbsp;<u>12'030,00</u></h5></h5>"}
if ( t == "CDV-50P")
{cena="<h5><u>4'059,00</u>&nbsp;/&nbsp;<u>4'560,00</u>&nbsp;/&nbsp;<u>5'400,00</u></h5></h5>"}
if ( t == "CDV-50P/DRC-40CK")
{cena="<h5><u>5'985,00</u>&nbsp;/&nbsp;<u>6'724,00</u>&nbsp;/&nbsp;<u>8'070,00</u></h5></h5>"}
if ( t == "CDV-50P/DRC-4CP")
{cena="<h5><u>6'585,00</u>&nbsp;/&nbsp;<u>7'398,00</u>&nbsp;/&nbsp;<u>8'490,00</u></h5></h5>"}
if ( t == "CDV-52A/DRC-22CS")
{cena="<h5><u>9'870,00</u>&nbsp;/&nbsp;<u>10'533,00</u>&nbsp;/&nbsp;<u>12'330,00</u></h5></h5>"}
if ( t == "CDV-52AS")
{cena="<h5><u>6'831,00</u>&nbsp;/&nbsp;<u>7'290,00</u>&nbsp;/&nbsp;<u>8'550,00</u></h5></h5>"}
if ( t == "CDV-70A")
{cena="<h5><u>6'015,00</u>&nbsp;/&nbsp;<u>6'758,00</u>&nbsp;/&nbsp;<u>7'950,00</u></h5></h5>"}
if ( t == "CDV-70AM")
{cena="<h5><u>7'821,00</u>&nbsp;/&nbsp;<u>8'787,00</u>&nbsp;/&nbsp;<u>10'170,00</u></h5></h5>"}
if ( t == "CDV-71BE")
{cena="<h5><u>9'258,00</u>&nbsp;/&nbsp;<u>10'402,00</u>&nbsp;/&nbsp;<u>11'940,00</u></h5></h5>"}
if ( t == "CDV-71BE/MC-VIZIT")
{cena="<h5><u>13'005,00</u>&nbsp;/&nbsp;<u>14'200,00</u>&nbsp;/&nbsp;<u>15'345,00</u></h5></h5>"}
if ( t == "CDV-71BE/XL")
{cena="<h5><u>13'005,00</u>&nbsp;/&nbsp;<u>14'200,00</u>&nbsp;/&nbsp;<u>15'345,00</u></h5></h5>"}
if ( t == "CDV-71BE Digital")
{cena="<h5><u>14'178,00</u>&nbsp;/&nbsp;<u>15'400,00</u>&nbsp;/&nbsp;<u>16'731,00</u></h5></h5>"}
if ( t == "CDV-71BE Coordinate")
{cena="<h5><u>14'178,00</u>&nbsp;/&nbsp;<u>15'400,00</u>&nbsp;/&nbsp;<u>16'731,00</u></h5></h5>"}
if ( t == "CDV-71BQ")
{cena="<h5><u>14'160,00</u>&nbsp;/&nbsp;<u>15'910,00</u>&nbsp;/&nbsp;<u>18'180,00</u></h5></h5>"}
if ( t == "CDV-71BQS")
{cena="<h5><u>7'674,00</u>&nbsp;/&nbsp;<u>8'622,00</u>&nbsp;/&nbsp;<u>10'050,00</u></h5></h5>"}
if ( t == "CDV-71BSE")
{cena="<h5><u>9'660,00</u>&nbsp;/&nbsp;<u>10'853,00</u>&nbsp;/&nbsp;<u>11'570,00</u></h5></h5>"}
if ( t == "CDV-72BE")
{cena="<h5><u>11'550,00</u>&nbsp;/&nbsp;<u>12'977,00</u>&nbsp;/&nbsp;<u>14'670,00</u></h5></h5>"}
if ( t == "CH-480SL")
{cena="<h5><u>6'435,00</u>&nbsp;/&nbsp;<u>6'867,00</u>&nbsp;/&nbsp;<u>8'040,00</u></h5></h5>"}
if ( t == "CH-481SL")
{cena="<h5><u>5'895,00</u>&nbsp;/&nbsp;<u>6'291,00</u>&nbsp;/&nbsp;<u>7'380,00</u></h5></h5>"}
if ( t == "CKV-71TS")
{cena="<h5><u>11'139,00</u>&nbsp;/&nbsp;<u>11'887,00</u>&nbsp;/&nbsp;<u>13'920,00</u></h5></h5>"}
if ( t == "CM-200")
{cena="<h5><u>'220,00</u>&nbsp;/&nbsp;<u>'277,00</u>&nbsp;/&nbsp;<u>'305,00</u></h5></h5>"}
if ( t == "CM-200L")
{cena="<h5><u>'250,00</u>&nbsp;/&nbsp;<u>'305,00</u>&nbsp;/&nbsp;<u>'335,00</u></h5></h5>"}
if ( t == "CM-200X")
{cena="<h5><u>'414,00</u>&nbsp;/&nbsp;<u>'459,00</u>&nbsp;/&nbsp;<u>'510,00</u></h5></h5>"}
if ( t == "CM-201")
{cena="<h5><u>'477,00</u>&nbsp;/&nbsp;<u>'509,00</u>&nbsp;/&nbsp;<u>'570,00</u></h5></h5>"}
if ( t == "CM-204")
{cena="<h5><u>'657,00</u>&nbsp;/&nbsp;<u>'729,00</u>&nbsp;/&nbsp;<u>'810,00</u></h5></h5>"}
if ( t == "CM-206")
{cena="<h5><u>1'107,00</u>&nbsp;/&nbsp;<u>1'129,00</u>&nbsp;/&nbsp;<u>1'410,00</u></h5></h5>"}
if ( t == "CM-206M")
{cena="<h5><u>1'000,00</u>&nbsp;/&nbsp;<u>1'099,00</u>&nbsp;/&nbsp;<u>1'230,00</u></h5></h5>"}
if ( t == "CM-211")
{cena="<h5><u>1'000,00</u>&nbsp;/&nbsp;<u>1'099,00</u>&nbsp;/&nbsp;<u>1'230,00</u></h5></h5>"}
if ( t == "CM-211M")
{cena="<h5><u>1'000,00</u>&nbsp;/&nbsp;<u>1'099,00</u>&nbsp;/&nbsp;<u>1'230,00</u></h5></h5>"}
if ( t == "CM-800")
{cena="<h5><u>'243,00</u>&nbsp;/&nbsp;<u>'259,00</u>&nbsp;/&nbsp;<u>'300,00</u></h5></h5>"}
if ( t == "CM-800L")
{cena="<h5><u>'276,00</u>&nbsp;/&nbsp;<u>'294,00</u>&nbsp;/&nbsp;<u>'360,00</u></h5></h5>"}
if ( t == "CM-800S")
{cena="<h5><u>'330,00</u>&nbsp;/&nbsp;<u>'352,00</u>&nbsp;/&nbsp;<u>'420,00</u></h5></h5>"}
if ( t == "CM-801")
{cena="<h5><u>'384,00</u>&nbsp;/&nbsp;<u>'409,00</u>&nbsp;/&nbsp;<u>'480,00</u></h5></h5>"}
if ( t == "CM-810")
{cena="<h5><u>1'860,00</u>&nbsp;/&nbsp;<u>1'985,00</u>&nbsp;/&nbsp;<u>2'340,00</u></h5></h5>"}
if ( t == "CM-810M")
{cena="<h5><u>1'746,00</u>&nbsp;/&nbsp;<u>1'863,00</u>&nbsp;/&nbsp;<u>2'190,00</u></h5></h5>"}
if ( t == "DP-2HP")
{cena="<h5><u>'495,00</u>&nbsp;/&nbsp;<u>'528,00</u>&nbsp;/&nbsp;<u>'630,00</u></h5></h5>"}
if ( t == "DP-2K")
{cena="<h5><u>'480,00</u>&nbsp;/&nbsp;<u>'512,00</u>&nbsp;/&nbsp;<u>'600,00</u></h5></h5>"}
if ( t == "DP-2KN")
{cena="<h5><u>'480,00</u>&nbsp;/&nbsp;<u>'512,00</u>&nbsp;/&nbsp;<u>'600,00</u></h5></h5>"}
if ( t == "DP-2VS")
{cena="<h5><u>'400,00</u>&nbsp;/&nbsp;<u>'422,00</u>&nbsp;/&nbsp;<u>'477,00</u></h5></h5>"}
if ( t == "DP-4VH")
{cena="<h5><u>'348,00</u>&nbsp;/&nbsp;<u>'371,00</u>&nbsp;/&nbsp;<u>'420,00</u></h5></h5>"}
if ( t == "DP-4VH Colorful")
{cena="<h5><u>'495,00</u>&nbsp;/&nbsp;<u>'528,00</u>&nbsp;/&nbsp;<u>'630,00</u></h5></h5>"}
if ( t == "DP-4VR")
{cena="<h5><u>'348,00</u>&nbsp;/&nbsp;<u>'371,00</u>&nbsp;/&nbsp;<u>'420,00</u></h5></h5>"}
if ( t == "DP-20H")
{cena="<h5><u>'519,00</u>&nbsp;/&nbsp;<u>'554,00</u>&nbsp;/&nbsp;<u>'660,00</u></h5></h5>"}
if ( t == "DP-20H Colorful")
{cena="<h5><u>'669,00</u>&nbsp;/&nbsp;<u>'714,00</u>&nbsp;/&nbsp;<u>'840,00</u></h5></h5>"}
if ( t == "DP-20HR Colorful")
{cena="<h5><u>'687,00</u>&nbsp;/&nbsp;<u>'733,00</u>&nbsp;/&nbsp;<u>'870,00</u></h5></h5>"}
if ( t == "DP-20HR")
{cena="<h5><u>'534,00</u>&nbsp;/&nbsp;<u>'570,00</u>&nbsp;/&nbsp;<u>'660,00</u></h5></h5>"}
if ( t == "DP-201R")
{cena="<h5><u>'519,00</u>&nbsp;/&nbsp;<u>'554,00</u>&nbsp;/&nbsp;<u>'660,00</u></h5></h5>"}
if ( t == "DP-HP01M/S")
{cena="<h5><u>'882,00</u>&nbsp;/&nbsp;<u>'941,00</u>&nbsp;/&nbsp;<u>1'110,00</u></h5></h5>"}
if ( t == "DP-KSS")
{cena="<h5><u>'249,00</u>&nbsp;/&nbsp;<u>'266,00</u>&nbsp;/&nbsp;<u>'300,00</u></h5></h5>"}
if ( t == "DP-RA01")
{cena="<h5><u>'988,00</u>&nbsp;/&nbsp;<u>1'040,00</u>&nbsp;/&nbsp;<u>1'200,00</u></h5></h5>"}
if ( t == "DP-RA01M")
{cena="<h5><u>'951,00</u>&nbsp;/&nbsp;<u>1'015,00</u>&nbsp;/&nbsp;<u>1'200,00</u></h5></h5>"}
if ( t == "DP-RA01M/S")
{cena="<h5><u>'951,00</u>&nbsp;/&nbsp;<u>1'015,00</u>&nbsp;/&nbsp;<u>1'200,00</u></h5></h5>"}
if ( t == "DP-RA01S")
{cena="<h5><u>'951,00</u>&nbsp;/&nbsp;<u>1'015,00</u>&nbsp;/&nbsp;<u>1'200,00</u></h5></h5>"}
if ( t == "DPV-2LH/DRC-22BS")
{cena="<h5><u>6'330,00</u>&nbsp;/&nbsp;<u>6'755,00</u>&nbsp;/&nbsp;<u>7'920,00</u></h5></h5>"}
if ( t == "DPV-2LHS")
{cena="<h5><u>4'011,00</u>&nbsp;/&nbsp;<u>4'280,00</u>&nbsp;/&nbsp;<u>5'010,00</u></h5></h5>"}
if ( t == "DPV-4AE")
{cena="<h5><u>2'651,00</u>&nbsp;/&nbsp;<u>2'853,00</u>&nbsp;/&nbsp;<u>3'075,00</u></h5></h5>"}
if ( t == "DPV-4HP память 256")
{cena="<h5><u>4'555,00</u>&nbsp;/&nbsp;<u>4'914,00</u>&nbsp;/&nbsp;<u>5'799,00</u></h5></h5>"}
if ( t == "DPV-4HP память 1024")
{cena="<h5><u>4'888,00</u>&nbsp;/&nbsp;<u>5'100,00</u>&nbsp;/&nbsp;<u>6'018,00</u></h5></h5>"}
if ( t == "DPV-4HP память 4096")
{cena="<h5><u>5'733,00</u>&nbsp;/&nbsp;<u>6'100,00</u>&nbsp;/&nbsp;<u>6'765,00</u></h5></h5>"}
if ( t == "DPV-4HP")
{cena="<h5><u>2'253,00</u>&nbsp;/&nbsp;<u>2'531,00</u>&nbsp;/&nbsp;<u>3'000,00</u></h5></h5>"}
if ( t == "DPV-4HP/SL01")
{cena="<h5><u>4'680,00</u>&nbsp;/&nbsp;<u>5'700,00</u>&nbsp;/&nbsp;<u>6'780,00</u></h5></h5>"}
if ( t == "DPV-4HP/DRC-4BG")
{cena="<h5><u>3'810,00</u>&nbsp;/&nbsp;<u>4'280,00</u>&nbsp;/&nbsp;<u>4'950,00</u></h5></h5>"}
if ( t == "DPV-4HP/DRC-4BP")
{cena="<h5><u>3'765,00</u>&nbsp;/&nbsp;<u>4'230,00</u>&nbsp;/&nbsp;<u>4'890,00</u></h5></h5>"}
if ( t == "DPV-4HPD")
{cena="<h5><u>2'253,00</u>&nbsp;/&nbsp;<u>2'531,00</u>&nbsp;/&nbsp;<u>3'000,00</u></h5></h5>"}
if ( t == "DPV-4HPK-Coordinate")
{cena="<h5><u>5'041,00</u>&nbsp;/&nbsp;<u>5'338,00</u>&nbsp;/&nbsp;<u>5'634,00</u></h5></h5>"}
if ( t == "DPV-4HPK-Digital")
{cena="<h5><u>5'041,00</u>&nbsp;/&nbsp;<u>5'338,00</u>&nbsp;/&nbsp;<u>5'634,00</u></h5></h5>"}
if ( t == "DPV-4HP/MC")
{cena="<h5><u>3'750,00</u>&nbsp;/&nbsp;<u>4'170,00</u>&nbsp;/&nbsp;<u>5'040,00</u></h5></h5>"}
if ( t == "DPV-4HP/MC-VIZIT")
{cena="<h5><u>3'750,00</u>&nbsp;/&nbsp;<u>4'170,00</u>&nbsp;/&nbsp;<u>5'040,00</u></h5></h5>"}
if ( t == "DPV-4HPPR/XL")
{cena="<h5><u>4'149,00</u>&nbsp;/&nbsp;<u>4'243,00</u>&nbsp;/&nbsp;<u>4'469,00</u></h5></h5>"}
if ( t == "DPV-4HPR/4")
{cena="<h5><u>3'700,00</u>&nbsp;/&nbsp;<u>3'900,00</u>&nbsp;/&nbsp;<u>4'200,00</u></h5></h5>"}
if ( t == "DPV-4HP/XL")
{cena="<h5><u>3'750,00</u>&nbsp;/&nbsp;<u>4'170,00</u>&nbsp;/&nbsp;<u>5'040,00</u></h5></h5>"}
if ( t == "DPV-4KE/4")
{cena="<h5><u>4'125,00</u>&nbsp;/&nbsp;<u>4'770,00</u>&nbsp;/&nbsp;<u>5'550,00</u></h5></h5>"}
if ( t == "DPV-4KE/4C")
{cena="<h5><u>4'125,00</u>&nbsp;/&nbsp;<u>4'770,00</u>&nbsp;/&nbsp;<u>5'150,00</u></h5></h5>"}
if ( t == "DPV-4KE/4R")
{cena="<h5><u>4'015,00</u>&nbsp;/&nbsp;<u>4'660,00</u>&nbsp;/&nbsp;<u>5'016,00</u></h5></h5>"}
if ( t == "DPV-4KE")
{cena="<h5><u>2'235,00</u>&nbsp;/&nbsp;<u>2'531,00</u>&nbsp;/&nbsp;<u>3'000,00</u></h5></h5>"}
if ( t == "DPV-4KE/C")
{cena="<h5><u>3'840,00</u>&nbsp;/&nbsp;<u>4'314,00</u>&nbsp;/&nbsp;<u>5'040,00</u></h5></h5>"}
if ( t == "DPV-4KE/M4")
{cena="<h5><u>5'310,00</u>&nbsp;/&nbsp;<u>5'966,00</u>&nbsp;/&nbsp;<u>6'975,00</u></h5></h5>"}
if ( t == "DPV-4KE/M")
{cena="<h5><u>4'620,00</u>&nbsp;/&nbsp;<u>5'191,00</u>&nbsp;/&nbsp;<u>6'060,00</u></h5></h5>"}
if ( t == "DPV-4KE/MC")
{cena="<h5><u>5'460,00</u>&nbsp;/&nbsp;<u>6'134,00</u>&nbsp;/&nbsp;<u>7'170,00</u></h5></h5>"}
if ( t == "DPV-4KE/MR")
{cena="<h5><u>5'460,00</u>&nbsp;/&nbsp;<u>6'134,00</u>&nbsp;/&nbsp;<u>7'170,00</u></h5></h5>"}
if ( t == "DPV-4KE/R")
{cena="<h5><u>3'840,00</u>&nbsp;/&nbsp;<u>4'314,00</u>&nbsp;/&nbsp;<u>5'040,00</u></h5></h5>"}
if ( t == "DPV-4LH")
{cena="<h5><u>2'574,00</u>&nbsp;/&nbsp;<u>2'892,00</u>&nbsp;/&nbsp;<u>3'450,00</u></h5></h5>"}
if ( t == "DPV-4MEN")
{cena="<h5><u>2'526,00</u>&nbsp;/&nbsp;<u>2'695,00</u>&nbsp;/&nbsp;<u>3'150,00</u></h5></h5>"}
if ( t == "DPV-4MTM Coordinate 256")
{cena="<h5><u>6'106,00</u>&nbsp;/&nbsp;<u>6'972,00</u>&nbsp;/&nbsp;<u>8'229,00</u></h5></h5>"}
if ( t == "DPV-4MTM Coordinate 1024")
{cena="<h5><u>6'222,00</u>&nbsp;/&nbsp;<u>7'011,00</u>&nbsp;/&nbsp;<u>8'271,00</u></h5></h5>"}
if ( t == "DPV-4MTM Digital 256")
{cena="<h5><u>6'106,00</u>&nbsp;/&nbsp;<u>6'972,00</u>&nbsp;/&nbsp;<u>8'229,00</u></h5></h5>"}
if ( t == "DPV-4MTM Digital 1024")
{cena="<h5><u>6'801,00</u>&nbsp;/&nbsp;<u>7'488,00</u>&nbsp;/&nbsp;<u>8'838,00</u></h5></h5>"}
if ( t == "DPV-4MTN")
{cena="<h5><u>2'574,00</u>&nbsp;/&nbsp;<u>2'892,00</u>&nbsp;/&nbsp;<u>3'450,00</u></h5></h5>"}
if ( t == "DPV-4MTN память 256")
{cena="<h5><u>5'250,00</u>&nbsp;/&nbsp;<u>5'700,00</u>&nbsp;/&nbsp;<u>6'195,00</u></h5></h5>"}
if ( t == "DPV-4PB1")
{cena="<h5><u>2'277,00</u>&nbsp;/&nbsp;<u>2'558,00</u>&nbsp;/&nbsp;<u>3'060,00</u></h5></h5>"}
if ( t == "DPV-4PB1 Coordinate")
{cena="<h5><u>4'887,00</u>&nbsp;/&nbsp;<u>5'100,00</u>&nbsp;/&nbsp;<u>5'832,00</u></h5></h5>"}
if ( t == "DPV-4PB1 Digital")
{cena="<h5><u>4'887,00</u>&nbsp;/&nbsp;<u>5'100,00</u>&nbsp;/&nbsp;<u>5'832,00</u></h5></h5>"}
if ( t == "DPV-4PB2")
{cena="<h5><u>2'427,00</u>&nbsp;/&nbsp;<u>2'727,00</u>&nbsp;/&nbsp;<u>3'150,00</u></h5></h5>"}
if ( t == "DPV-4PB2 память 1000")
{cena="<h5><u>4'349,00</u>&nbsp;/&nbsp;<u>5'527,00</u>&nbsp;/&nbsp;<u>6'309,00</u></h5></h5>"}
if ( t == "DPV-4PB2 Digital")
{cena="<h5><u>3'840,00</u>&nbsp;/&nbsp;<u>4'314,00</u>&nbsp;/&nbsp;<u>5'040,00</u></h5></h5>"}
if ( t == "DPV-4PB4")
{cena="<h5><u>2'574,00</u>&nbsp;/&nbsp;<u>2'892,00</u>&nbsp;/&nbsp;<u>3'390,00</u></h5></h5>"}
if ( t == "DPV-4PB")
{cena="<h5><u>2'328,00</u>&nbsp;/&nbsp;<u>2'615,00</u>&nbsp;/&nbsp;<u>3'030,00</u></h5></h5>"}
if ( t == "DPV-4PE2")
{cena="<h5><u>2'772,00</u>&nbsp;/&nbsp;<u>3'114,00</u>&nbsp;/&nbsp;<u>3'540,00</u></h5></h5>"}
if ( t == "DPV-4PF2")
{cena="<h5><u>2'922,00</u>&nbsp;/&nbsp;<u>3'118,00</u>&nbsp;/&nbsp;<u>3'660,00</u></h5></h5>"}
if ( t == "DPV-4PM2")
{cena="<h5><u>2'847,00</u>&nbsp;/&nbsp;<u>3'198,00</u>&nbsp;/&nbsp;<u>3'630,00</u></h5></h5>"}
if ( t == "DPV-4PM2/VM64P")
{cena="<h5><u>4'647,00</u>&nbsp;/&nbsp;<u>4'998,00</u>&nbsp;/&nbsp;<u>5'430,00</u></h5></h5>"}
if ( t == "DPV-4PN")
{cena="<h5><u>2'229,00</u>&nbsp;/&nbsp;<u>2'504,00</u>&nbsp;/&nbsp;<u>2'970,00</u></h5></h5>"}
if ( t == "DPV-4PS")
{cena="<h5><u>2'871,00</u>&nbsp;/&nbsp;<u>3'064,00</u>&nbsp;/&nbsp;<u>3'600,00</u></h5></h5>"}
if ( t == "DPV-4PS2")
{cena="<h5><u>2'871,00</u>&nbsp;/&nbsp;<u>3'064,00</u>&nbsp;/&nbsp;<u>3'600,00</u></h5></h5>"}
if ( t == "DPV-4RH")
{cena="<h5><u>2'772,00</u>&nbsp;/&nbsp;<u>3'114,00</u>&nbsp;/&nbsp;<u>3'720,00</u></h5></h5>"}
if ( t == "DPV-4RHR Digital")
{cena="<h5><u>4'953,00</u>&nbsp;/&nbsp;<u>5'400,00</u>&nbsp;/&nbsp;<u>5'844,00</u></h5></h5>"}
if ( t == "DPV-4RHK Coordinate")
{cena="<h5><u>4'953,00</u>&nbsp;/&nbsp;<u>5'400,00</u>&nbsp;/&nbsp;<u>5'844,00</u></h5></h5>"}
if ( t == "DPV-4STN")
{cena="<h5><u>2'772,00</u>&nbsp;/&nbsp;<u>3'114,00</u>&nbsp;/&nbsp;<u>3'720,00</u></h5></h5>"}
if ( t == "DPV-KV")
{cena="<h5><u>2'613,00</u>&nbsp;/&nbsp;<u>2'788,00</u>&nbsp;/&nbsp;<u>3'270,00</u></h5></h5>"}
if ( t == "DPV-nA")
{cena="<h5><u>8'811,00</u>&nbsp;/&nbsp;<u>9'403,00</u>&nbsp;/&nbsp;<u>11'010,00</u></h5></h5>"}
if ( t == "DPV-nAS")
{cena="<h5><u>5'346,00</u>&nbsp;/&nbsp;<u>5'705,00</u>&nbsp;/&nbsp;<u>6'690,00</u></h5></h5>"}
if ( t == "DR-2A2N")
{cena="<h5><u>1'263,00</u>&nbsp;/&nbsp;<u>1'347,00</u>&nbsp;/&nbsp;<u>1'590,00</u></h5></h5>"}
if ( t == "DR-2A3N")
{cena="<h5><u>1'392,00</u>&nbsp;/&nbsp;<u>1'485,00</u>&nbsp;/&nbsp;<u>1'740,00</u></h5></h5>"}
if ( t == "DR-2AM")
{cena="<h5><u>1'263,00</u>&nbsp;/&nbsp;<u>1'347,00</u>&nbsp;/&nbsp;<u>1'590,00</u></h5></h5>"}
if ( t == "DR-2AN")
{cena="<h5><u>1'134,00</u>&nbsp;/&nbsp;<u>1'210,00</u>&nbsp;/&nbsp;<u>1'410,00</u></h5></h5>"}
if ( t == "DR-2G")
{cena="<h5><u>'342,00</u>&nbsp;/&nbsp;<u>'365,00</u>&nbsp;/&nbsp;<u>'420,00</u></h5></h5>"}
if ( t == "DR-2GR")
{cena="<h5><u>'390,00</u>&nbsp;/&nbsp;<u>'416,00</u>&nbsp;/&nbsp;<u>'480,00</u></h5></h5>"}
if ( t == "DR-2K")
{cena="<h5><u>'195,00</u>&nbsp;/&nbsp;<u>'208,00</u>&nbsp;/&nbsp;<u>'240,00</u></h5></h5>"}
if ( t == "DR-2KM")
{cena="<h5><u>'699,00</u>&nbsp;/&nbsp;<u>'746,00</u>&nbsp;/&nbsp;<u>'870,00</u></h5></h5>"}
if ( t == "DR-4AM")
{cena="<h5><u>1'386,00</u>&nbsp;/&nbsp;<u>1'479,00</u>&nbsp;/&nbsp;<u>1'740,00</u></h5></h5>"}
if ( t == "DR-4KM")
{cena="<h5><u>'855,00</u>&nbsp;/&nbsp;<u>'912,00</u>&nbsp;/&nbsp;<u>1'080,00</u></h5></h5>"}
if ( t == "DR-6AM")
{cena="<h5><u>1'485,00</u>&nbsp;/&nbsp;<u>1'584,00</u>&nbsp;/&nbsp;<u>1'860,00</u></h5></h5>"}
if ( t == "DR-6KL")
{cena="<h5><u>'900,00</u>&nbsp;/&nbsp;<u>'960,00</u>&nbsp;/&nbsp;<u>1'140,00</u></h5></h5>"}
if ( t == "DR-6KM")
{cena="<h5><u>'915,00</u>&nbsp;/&nbsp;<u>'976,00</u>&nbsp;/&nbsp;<u>1'140,00</u></h5></h5>"}
if ( t == "DR-6KS")
{cena="<h5><u>'933,00</u>&nbsp;/&nbsp;<u>'995,00</u>&nbsp;/&nbsp;<u>1'170,00</u></h5></h5>"}
if ( t == "DR-8AM")
{cena="<h5><u>1'536,00</u>&nbsp;/&nbsp;<u>1'639,00</u>&nbsp;/&nbsp;<u>1'920,00</u></h5></h5>"}
if ( t == "DR-8KM")
{cena="<h5><u>1'014,00</u>&nbsp;/&nbsp;<u>1'082,00</u>&nbsp;/&nbsp;<u>1'260,00</u></h5></h5>"}
if ( t == "DR-8KS")
{cena="<h5><u>1'038,00</u>&nbsp;/&nbsp;<u>1'107,00</u>&nbsp;/&nbsp;<u>1'290,00</u></h5></h5>"}
if ( t == "DR-10AM")
{cena="<h5><u>1'980,00</u>&nbsp;/&nbsp;<u>2'113,00</u>&nbsp;/&nbsp;<u>2'490,00</u></h5></h5>"}
if ( t == "DR-10KL")
{cena="<h5><u>1'140,00</u>&nbsp;/&nbsp;<u>1'216,00</u>&nbsp;/&nbsp;<u>1'440,00</u></h5></h5>"}
if ( t == "DR-10KS")
{cena="<h5><u>1'089,00</u>&nbsp;/&nbsp;<u>1'162,00</u>&nbsp;/&nbsp;<u>1'350,00</u></h5></h5>"}
if ( t == "DR-12AM")
{cena="<h5><u>2'100,00</u>&nbsp;/&nbsp;<u>2'241,00</u>&nbsp;/&nbsp;<u>2'640,00</u></h5></h5>"}
if ( t == "DR-12KL")
{cena="<h5><u>1'245,00</u>&nbsp;/&nbsp;<u>1'328,00</u>&nbsp;/&nbsp;<u>1'560,00</u></h5></h5>"}
if ( t == "DR-14AM")
{cena="<h5><u>2'202,00</u>&nbsp;/&nbsp;<u>2'350,00</u>&nbsp;/&nbsp;<u>2'760,00</u></h5></h5>"}
if ( t == "DR-14KL")
{cena="<h5><u>1'374,00</u>&nbsp;/&nbsp;<u>1'466,00</u>&nbsp;/&nbsp;<u>1'710,00</u></h5></h5>"}
if ( t == "DR-16AM")
{cena="<h5><u>2'307,00</u>&nbsp;/&nbsp;<u>2'462,00</u>&nbsp;/&nbsp;<u>2'880,00</u></h5></h5>"}
if ( t == "DR-16AS")
{cena="<h5><u>2'256,00</u>&nbsp;/&nbsp;<u>2'407,00</u>&nbsp;/&nbsp;<u>2'820,00</u></h5></h5>"}
if ( t == "DR-16ASS")
{cena="<h5><u>1'680,00</u>&nbsp;/&nbsp;<u>1'793,00</u>&nbsp;/&nbsp;<u>2'100,00</u></h5></h5>"}
if ( t == "DR-20P")
{cena="<h5><u>'390,00</u>&nbsp;/&nbsp;<u>'416,00</u>&nbsp;/&nbsp;<u>'480,00</u></h5></h5>"}
if ( t == "DR-20S")
{cena="<h5><u>'420,00</u>&nbsp;/&nbsp;<u>'448,00</u>&nbsp;/&nbsp;<u>'540,00</u></h5></h5>"}
if ( t == "DR-20SD")
{cena="<h5><u>'420,00</u>&nbsp;/&nbsp;<u>'448,00</u>&nbsp;/&nbsp;<u>'540,00</u></h5></h5>"}
if ( t == "DR-24AS")
{cena="<h5><u>2'799,00</u>&nbsp;/&nbsp;<u>2'987,00</u>&nbsp;/&nbsp;<u>3'510,00</u></h5></h5>"}
if ( t == "DR-201A")
{cena="<h5><u>'480,00</u>&nbsp;/&nbsp;<u>'512,00</u>&nbsp;/&nbsp;<u>'600,00</u></h5></h5>"}
if ( t == "DR-201AG")
{cena="<h5><u>'480,00</u>&nbsp;/&nbsp;<u>'512,00</u>&nbsp;/&nbsp;<u>'600,00</u></h5></h5>"}
if ( t == "DR-201D")
{cena="<h5><u>'195,00</u>&nbsp;/&nbsp;<u>'208,00</u>&nbsp;/&nbsp;<u>'240,00</u></h5></h5>"}
if ( t == "DR-201DS")
{cena="<h5><u>'195,00</u>&nbsp;/&nbsp;<u>'208,00</u>&nbsp;/&nbsp;<u>'240,00</u></h5></h5>"}
if ( t == "DRC-2AB")
{cena="<h5><u>2'724,00</u>&nbsp;/&nbsp;<u>2'907,00</u>&nbsp;/&nbsp;<u>3'390,00</u></h5></h5>"}
if ( t == "DRC-2AB1")
{cena="<h5><u>2'574,00</u>&nbsp;/&nbsp;<u>2'747,00</u>&nbsp;/&nbsp;<u>3'210,00</u></h5></h5>"}
if ( t == "DRC-2AC")
{cena="<h5><u>4'110,00</u>&nbsp;/&nbsp;<u>4'386,00</u>&nbsp;/&nbsp;<u>5'130,00</u></h5></h5>"}
if ( t == "DRC-2AC1")
{cena="<h5><u>3'861,00</u>&nbsp;/&nbsp;<u>4'120,00</u>&nbsp;/&nbsp;<u>4'830,00</u></h5></h5>"}
if ( t == "DRC-2AM")
{cena="<h5><u>3'240,00</u>&nbsp;/&nbsp;<u>3'457,00</u>&nbsp;/&nbsp;<u>4'050,00</u></h5></h5>"}
if ( t == "DRC-2AS")
{cena="<h5><u>1'485,00</u>&nbsp;/&nbsp;<u>1'584,00</u>&nbsp;/&nbsp;<u>1'860,00</u></h5></h5>"}
if ( t == "DRC-4AB")
{cena="<h5><u>2'970,00</u>&nbsp;/&nbsp;<u>3'169,00</u>&nbsp;/&nbsp;<u>3'720,00</u></h5></h5>"}
if ( t == "DRC-4AC")
{cena="<h5><u>4'308,00</u>&nbsp;/&nbsp;<u>4'597,00</u>&nbsp;/&nbsp;<u>5'370,00</u></h5></h5>"}
if ( t == "DRC-4AM")
{cena="<h5><u>3'369,00</u>&nbsp;/&nbsp;<u>3'595,00</u>&nbsp;/&nbsp;<u>4'200,00</u></h5></h5>"}
if ( t == "DRC-4AS")
{cena="<h5><u>1'584,00</u>&nbsp;/&nbsp;<u>1'690,00</u>&nbsp;/&nbsp;<u>1'980,00</u></h5></h5>"}
if ( t == "DRC-4BA")
{cena="<h5><u>2'229,00</u>&nbsp;/&nbsp;<u>2'504,00</u>&nbsp;/&nbsp;<u>2'850,00</u></h5></h5>"}
if ( t == "DRC-4BG")
{cena="<h5><u>1'569,00</u>&nbsp;/&nbsp;<u>1'762,00</u>&nbsp;/&nbsp;<u>2'100,00</u></h5></h5>"}
if ( t == "DRC-4BH")
{cena="<h5><u>2'586,00</u>&nbsp;/&nbsp;<u>2'905,00</u>&nbsp;/&nbsp;<u>3'330,00</u></h5></h5>"}
if ( t == "DRC-4BP")
{cena="<h5><u>1'608,00</u>&nbsp;/&nbsp;<u>1'806,00</u>&nbsp;/&nbsp;<u>2'160,00</u></h5></h5>"}
if ( t == "DRC-4CA")
{cena="<h5><u>3'516,00</u>&nbsp;/&nbsp;<u>3'950,00</u>&nbsp;/&nbsp;<u>4'620,00</u></h5></h5>"}
if ( t == "DRC-4CG")
{cena="<h5><u>2'673,00</u>&nbsp;/&nbsp;<u>3'003,00</u>&nbsp;/&nbsp;<u>3'450,00</u></h5></h5>"}
if ( t == "DRC-4CH")
{cena="<h5><u>3'912,00</u>&nbsp;/&nbsp;<u>4'395,00</u>&nbsp;/&nbsp;<u>5'010,00</u></h5></h5>"}
if ( t == "DRC-4CN")
{cena="<h5><u>2'871,00</u>&nbsp;/&nbsp;<u>3'064,00</u>&nbsp;/&nbsp;<u>3'600,00</u></h5></h5>"}
if ( t == "DRC-4CP")
{cena="<h5><u>2'649,00</u>&nbsp;/&nbsp;<u>2'976,00</u>&nbsp;/&nbsp;<u>3'540,00</u></h5></h5>"}
if ( t == "DRC-4CM")
{cena="<h5><u>3'003,00</u>&nbsp;/&nbsp;<u>3'204,00</u>&nbsp;/&nbsp;<u>3'750,00</u></h5></h5>"}
if ( t == "DRC-4DB")
{cena="<h5><u>2'253,00</u>&nbsp;/&nbsp;<u>2'531,00</u>&nbsp;/&nbsp;<u>3'300,00</u></h5></h5>"}
if ( t == "DRC-4DC")
{cena="<h5><u>3'342,00</u>&nbsp;/&nbsp;<u>3'755,00</u>&nbsp;/&nbsp;<u>4'350,00</u></h5></h5>"}
if ( t == "DRC-6AB")
{cena="<h5><u>3'219,00</u>&nbsp;/&nbsp;<u>3'435,00</u>&nbsp;/&nbsp;<u>4'020,00</u></h5></h5>"}
if ( t == "DRC-6AC")
{cena="<h5><u>4'455,00</u>&nbsp;/&nbsp;<u>4'754,00</u>&nbsp;/&nbsp;<u>5'580,00</u></h5></h5>"}
if ( t == "DRC-6AM")
{cena="<h5><u>3'474,00</u>&nbsp;/&nbsp;<u>3'707,00</u>&nbsp;/&nbsp;<u>4'350,00</u></h5></h5>"}
if ( t == "DRC-6AS")
{cena="<h5><u>1'734,00</u>&nbsp;/&nbsp;<u>1'850,00</u>&nbsp;/&nbsp;<u>2'160,00</u></h5></h5>"}
if ( t == "DRC-8AB")
{cena="<h5><u>3'465,00</u>&nbsp;/&nbsp;<u>3'698,00</u>&nbsp;/&nbsp;<u>4'320,00</u></h5></h5>"}
if ( t == "DRC-8AC")
{cena="<h5><u>4'506,00</u>&nbsp;/&nbsp;<u>4'809,00</u>&nbsp;/&nbsp;<u>5'640,00</u></h5></h5>"}
if ( t == "DRC-8AM")
{cena="<h5><u>3'525,00</u>&nbsp;/&nbsp;<u>3'762,00</u>&nbsp;/&nbsp;<u>4'410,00</u></h5></h5>"}
if ( t == "DRC-8AS")
{cena="<h5><u>1'857,00</u>&nbsp;/&nbsp;<u>1'981,00</u>&nbsp;/&nbsp;<u>2'310,00</u></h5></h5>"}
if ( t == "DRC-10AS")
{cena="<h5><u>2'022,00</u>&nbsp;/&nbsp;<u>2'158,00</u>&nbsp;/&nbsp;<u>2'520,00</u></h5></h5>"}
if ( t == "DRC-12AS")
{cena="<h5><u>2'151,00</u>&nbsp;/&nbsp;<u>2'295,00</u>&nbsp;/&nbsp;<u>2'700,00</u></h5></h5>"}
if ( t == "DRC-14AS")
{cena="<h5><u>2'256,00</u>&nbsp;/&nbsp;<u>2'407,00</u>&nbsp;/&nbsp;<u>2'820,00</u></h5></h5>"}
if ( t == "DRC-16AS")
{cena="<h5><u>2'385,00</u>&nbsp;/&nbsp;<u>2'545,00</u>&nbsp;/&nbsp;<u>2'970,00</u></h5></h5>"}
if ( t == "DRC-18AS")
{cena="<h5><u>2'445,00</u>&nbsp;/&nbsp;<u>2'609,00</u>&nbsp;/&nbsp;<u>3'060,00</u></h5></h5>"}
if ( t == "DRC-20AS")
{cena="<h5><u>2'505,00</u>&nbsp;/&nbsp;<u>2'673,00</u>&nbsp;/&nbsp;<u>3'120,00</u></h5></h5>"}
if ( t == "DRC-22AS")
{cena="<h5><u>2'595,00</u>&nbsp;/&nbsp;<u>2'769,00</u>&nbsp;/&nbsp;<u>3'240,00</u></h5></h5>"}
if ( t == "DRC-22BA")
{cena="<h5><u>2'946,00</u>&nbsp;/&nbsp;<u>3'144,00</u>&nbsp;/&nbsp;<u>3'690,00</u></h5></h5>"}
if ( t == "DRC-22BS")
{cena="<h5><u>2'451,00</u>&nbsp;/&nbsp;<u>2'615,00</u>&nbsp;/&nbsp;<u>3'060,00</u></h5></h5>"}
if ( t == "DRC-22CA")
{cena="<h5><u>3'786,00</u>&nbsp;/&nbsp;<u>4'040,00</u>&nbsp;/&nbsp;<u>4'740,00</u></h5></h5>"}
if ( t == "DRC-22CS")
{cena="<h5><u>3'318,00</u>&nbsp;/&nbsp;<u>3'541,00</u>&nbsp;/&nbsp;<u>4'140,00</u></h5></h5>"}
if ( t == "DRC-24AS")
{cena="<h5><u>2'724,00</u>&nbsp;/&nbsp;<u>2'907,00</u>&nbsp;/&nbsp;<u>3'390,00</u></h5></h5>"}
if ( t == "DRC-240")
{cena="<h5><u>11'583,00</u>&nbsp;/&nbsp;<u>12'361,00</u>&nbsp;/&nbsp;<u>14'490,00</u></h5></h5>"}
if ( t == "DRC-40BS")
{cena="<h5><u>1'707,00</u>&nbsp;/&nbsp;<u>1'918,00</u>&nbsp;/&nbsp;<u>2'160,00</u></h5></h5>"}
if ( t == "DRC-40CG")
{cena="<h5><u>3'000,00</u>&nbsp;/&nbsp;<u>3'120,00</u>&nbsp;/&nbsp;<u>3'475,00</u></h5></h5>"}
if ( t == "DRC-40CI")
{cena="<h5><u>2'427,00</u>&nbsp;/&nbsp;<u>2'727,00</u>&nbsp;/&nbsp;<u>3'120,00</u></h5></h5>"}
if ( t == "DRC-40CK")
{cena="<h5><u>2'376,00</u>&nbsp;/&nbsp;<u>2'535,00</u>&nbsp;/&nbsp;<u>2'970,00</u></h5></h5>"}
if ( t == "DRC-40CS")
{cena="<h5><u>3'018,00</u>&nbsp;/&nbsp;<u>3'220,00</u>&nbsp;/&nbsp;<u>3'780,00</u></h5></h5>"}
if ( t == "DRC-40P")
{cena="<h5><u>1'569,00</u>&nbsp;/&nbsp;<u>1'674,00</u>&nbsp;/&nbsp;<u>1'950,00</u></h5></h5>"}
if ( t == "DRC-41CSN")
{cena="<h5><u>2'523,00</u>&nbsp;/&nbsp;<u>2'834,00</u>&nbsp;/&nbsp;<u>3'240,00</u></h5></h5>"}
if ( t == "DRC-403DF")
{cena="<h5><u>1'500,00</u>&nbsp;/&nbsp;<u>1'600,00</u>&nbsp;/&nbsp;<u>1'890,00</u></h5></h5>"}
if ( t == "DRC-480L")
{cena="<h5><u>12'426,00</u>&nbsp;/&nbsp;<u>13'261,00</u>&nbsp;/&nbsp;<u>15'540,00</u></h5></h5>"}
if ( t == "DRC-480L/RF")
{cena="<h5><u>14'700,00</u>&nbsp;/&nbsp;<u>15'688,00</u>&nbsp;/&nbsp;<u>18'390,00</u></h5></h5>"}
if ( t == "DRC-481L")
{cena="<h5><u>15'090,00</u>&nbsp;/&nbsp;<u>16'104,00</u>&nbsp;/&nbsp;<u>18'870,00</u></h5></h5>"}
if ( t == "DRC-481L/RF")
{cena="<h5><u>18'060,00</u>&nbsp;/&nbsp;<u>19'274,00</u>&nbsp;/&nbsp;<u>22'590,00</u></h5></h5>"}
if ( t == "DRC-481LC")
{cena="<h5><u>15'786,00</u>&nbsp;/&nbsp;<u>16'847,00</u>&nbsp;/&nbsp;<u>19'740,00</u></h5></h5>"}
if ( t == "DRC-481LC/RF")
{cena="<h5><u>18'765,00</u>&nbsp;/&nbsp;<u>20'026,00</u>&nbsp;/&nbsp;<u>23'460,00</u></h5></h5>"}
if ( t == "DRC-500LC")
{cena="<h5><u>19'059,00</u>&nbsp;/&nbsp;<u>20'340,00</u>&nbsp;/&nbsp;<u>23'820,00</u></h5></h5>"}
if ( t == "DRC-500LC/RF")
{cena="<h5><u>21'240,00</u>&nbsp;/&nbsp;<u>22'668,00</u>&nbsp;/&nbsp;<u>26'550,00</u></h5></h5>"}
if ( t == "DRC-600LC/RF")
{cena="<h5><u>19'560,00</u>&nbsp;/&nbsp;<u>20'875,00</u>&nbsp;/&nbsp;<u>24'450,00</u></h5></h5>"}
if ( t == "DRC-DW2")
{cena="<h5><u>2'796,00</u>&nbsp;/&nbsp;<u>2'984,00</u>&nbsp;/&nbsp;<u>3'510,00</u></h5></h5>"}
if ( t == "DR-DW2")
{cena="<h5><u>'777,00</u>&nbsp;/&nbsp;<u>'829,00</u>&nbsp;/&nbsp;<u>'960,00</u></h5></h5>"}
if ( t == "HF-4CM/HF-4D")
{cena="<h5><u>1'577,00</u>&nbsp;/&nbsp;<u>1'729,00</u>&nbsp;/&nbsp;<u>1'960,00</u></h5></h5>"}
if ( t == "HF-8CM/HF-4D")
{cena="<h5><u>1'110,00</u>&nbsp;/&nbsp;<u>1'184,00</u>&nbsp;/&nbsp;<u>1'380,00</u></h5></h5>"}
if ( t == "KS-30N")
{cena="<h5><u>5'277,00</u>&nbsp;/&nbsp;<u>5'729,00</u>&nbsp;/&nbsp;<u>6'060,00</u></h5></h5>"}
if ( t == "KS-70N")
{cena="<h5><u>9'777,00</u>&nbsp;/&nbsp;<u>10'329,00</u>&nbsp;/&nbsp;<u>11'060,00</u></h5></h5>"}
if ( t == "PI-10LN")
{cena="<h5><u>5'595,00</u>&nbsp;/&nbsp;<u>5'971,00</u>&nbsp;/&nbsp;<u>6'990,00</u></h5></h5>"}
if ( t == "PI-20LN")
{cena="<h5><u>7'179,00</u>&nbsp;/&nbsp;<u>7'661,00</u>&nbsp;/&nbsp;<u>8'970,00</u></h5></h5>"}
if ( t == "PI-30LN")
{cena="<h5><u>8'862,00</u>&nbsp;/&nbsp;<u>9'457,00</u>&nbsp;/&nbsp;<u>11'070,00</u></h5></h5>"}
if ( t == "TP-1K")
{cena="<h5><u>'546,00</u>&nbsp;/&nbsp;<u>'582,00</u>&nbsp;/&nbsp;<u>'690,00</u></h5></h5>"}
if ( t == "TP-5KV")
{cena="<h5><u>'582,00</u>&nbsp;/&nbsp;<u>'621,00</u>&nbsp;/&nbsp;<u>'720,00</u></h5></h5>"}
if ( t == "TP-6AC")
{cena="<h5><u>'534,00</u>&nbsp;/&nbsp;<u>'569,00</u>&nbsp;/&nbsp;<u>'660,00</u></h5></h5>"}
if ( t == "TP-6AN")
{cena="<h5><u>'850,00</u>&nbsp;/&nbsp;<u>'920,00</u>&nbsp;/&nbsp;<u>'999,00</u></h5></h5>"}
if ( t == "TP-6KP")
{cena="<h5><u>'552,00</u>&nbsp;/&nbsp;<u>'589,00</u>&nbsp;/&nbsp;<u>'690,00</u></h5></h5>"}
if ( t == "TP-9KV")
{cena="<h5><u>'714,00</u>&nbsp;/&nbsp;<u>'762,00</u>&nbsp;/&nbsp;<u>'900,00</u></h5></h5>"}
if ( t == "TP-10KP")
{cena="<h5><u>'582,00</u>&nbsp;/&nbsp;<u>'669,00</u>&nbsp;/&nbsp;<u>'720,00</u></h5></h5>"}
if ( t == "TP-12AC")
{cena="<h5><u>'570,00</u>&nbsp;/&nbsp;<u>'608,00</u>&nbsp;/&nbsp;<u>'720,00</u></h5></h5>"}
if ( t == "TP-12AM")
{cena="<h5><u>1'041,00</u>&nbsp;/&nbsp;<u>1'111,00</u>&nbsp;/&nbsp;<u>1'290,00</u></h5></h5>"}
if ( t == "TP-12AP")
{cena="<h5><u>'900,00</u>&nbsp;/&nbsp;<u>'924,00</u>&nbsp;/&nbsp;<u>'983,00</u></h5></h5>"}
if ( t == "TP-90AN")
{cena="<h5><u>1'290,00</u>&nbsp;/&nbsp;<u>1'376,00</u>&nbsp;/&nbsp;<u>1'620,00</u></h5></h5>"}
if ( t == "TP-K")
{cena="<h5><u>'249,00</u>&nbsp;/&nbsp;<u>'265,00</u>&nbsp;/&nbsp;<u>'300,00</u></h5></h5>"}
if ( t == "VM-32H")
{cena="<h5><u>1'740,00</u>&nbsp;/&nbsp;<u>1'857,00</u>&nbsp;/&nbsp;<u>2'190,00</u></h5></h5>"}
if ( t == "VM-60CH")
{cena="<h5><u>4'569,00</u>&nbsp;/&nbsp;<u>4'876,00</u>&nbsp;/&nbsp;<u>5'700,00</u></h5></h5>"}
if ( t == "VM-64H")
{cena="<h5><u>1'860,00</u>&nbsp;/&nbsp;<u>1'985,00</u>&nbsp;/&nbsp;<u>2'340,00</u></h5></h5>"}
if ( t == "VM-64P")
{cena="<h5><u>1'860,00</u>&nbsp;/&nbsp;<u>1'985,00</u>&nbsp;/&nbsp;<u>2'340,00</u></h5></h5>"}
if ( t == "WI-2B")
{cena="<h5><u>'831,00</u>&nbsp;/&nbsp;<u>'886,00</u>&nbsp;/&nbsp;<u>1'050,00</u></h5></h5>"}
if ( t == "WI-3SN")
{cena="<h5><u>'990,00</u>&nbsp;/&nbsp;<u>1'056,00</u>&nbsp;/&nbsp;<u>1'230,00</u></h5></h5>"}
if ( t == "WI-4C")
{cena="<h5><u>1'020,00</u>&nbsp;/&nbsp;<u>1'088,00</u>&nbsp;/&nbsp;<u>1'260,00</u></h5></h5>"}









document.write(cena)
}
	