function set_price(ths){
	var tid = document.getElementById('tid');
	var cid = document.getElementById('cid');
	if(tid){
		tid = tid.value;
	}else{
		tid = 0;
	}
	if(cid){
		cid = cid.value;
	}else{
		cid = 0;
	}
	//ths.options[ths.selectedIndex].value
	document.location.href = 'http://perles.conceptio.lv/?lpa=prod&tid=' + tid + '&cid=' + cid + '&price=' + ths.selectedIndex;
}

function pimg(src){
	document.getElementById('pimg').src = src;
}

function calc(val){
	var sum = parseFloat(document.getElementById('sum0').innerHTML) + parseFloat(val);
	document.getElementById('sum2').innerHTML = sum.toFixed(2);
}

function chk_t(){
  	for(var i = 0; i < document.forms[0].t2.length; i++){
        if(document.forms[0].t2[i].checked){
            return true;
        }
    }
	alert('Lūdzu apstipriniet piegādes noteikumus.');
	return false;
}

function show(el){
	if(document.getElementById(el).style.display == 'none'){
		document.getElementById(el).style.display = 'block';
	}else{
		document.getElementById(el).style.display = 'none';
	}
}


function showt(ths,name,t){
	var el = document.getElementById("tumb");
	if(t == 1){
		el.innerHTML = '<a href="'+ ths.href +'" rel="lightbox['+ ths.title +']"><img src="'+ name +'" alt="" class="tumbi" /></a>';
	}else{
		el.innerHTML = '<img src="'+ name +'" alt="" class="tumbi" />';
	}
	var eleft = etop = 0;
	var obj = ths;
	if(obj.offsetParent){
	    while(obj.offsetParent){
	        eleft += obj.offsetLeft
	        etop += obj.offsetTop
	    	obj = obj.offsetParent;
		}
	}
	el.style.top = etop - 25 + "px";
 	el.style.left = eleft - 25 + "px";
	el.style.display = "block";
	el.onmouseover = function(){ el.style.display = "block"; };
	el.onmouseout = function(){ el.style.display = "none"; };
	ths.onmouseout = function(){ el.style.display = "none"; };
}

