﻿function totalOrderlinePrice()
{
if(decSeparator == '.'){       	            
	        var price = parseFloat(tmp);
	        var totalPricePrOrderline = Math.round(antal*price*100)/100;                                                
	        totalPricePrOrderline = totalPricePrOrderline.toString();	        
	        
	            temp = totalPricePrOrderline.split("."); 

                if(temp[1]){                
                    if(temp[1].length == 1){                    
                        totalPricePrOrderline = totalPricePrOrderline+'0';
                    }                                                     
                    else if(!temp[1]){
                        totalPricePrOrderline = totalPricePrOrderline+decSeparator+'00';
                    }
                }
                
                if(temp[0].length > 3){                               
                     var thousands = temp[0].substring(0,temp[0].length-3);
                     var hundreds = temp[0].substring(thousands.length,thousands.length+3);
                     totalPricePrOrderline = thousands+intSeparator+hundreds;
                }             
           }            
           if(totalPricePrOrderline.indexOf('.')== '-1'){totalPricePrOrderline = totalPricePrOrderline+'.00'}            
            
       document.write(totalPricePrOrderline);             
}

function hideDiscountLines(){
    if(varenavn.indexOf('Factor') != -1){
        document.getElementById('varelinje'+loopnr).style.display='none'; 
        document.getElementById('streg1'+loopnr).style.display='none'; 
        document.getElementById('streg2'+loopnr).style.display='none';        
        }
}