var itemCount = 0;
var tempName = "";
for(tmpCount = 0; tmpCount < Cart.length; tmpCount++){
	itemCount += Number(Cart[tmpCount].qty);
}

document.write('      <tr>');
document.write('        <td><img src="/templates/images/bgMenu2.gif" width="178" height="23" border="0" alt="" /></td>');
document.write('      </tr>');
document.write('      <tr>');
document.write('        <td class="handlevogn"><div class="handlevognOverskr"><img src="/templates/images/handlevogn.gif" width="19" height="14" border="0" alt="" />Handlevogn</div></td>');
document.write('      </tr>');
document.write('      <tr>');
document.write('        <td class="handlevogn boldSmall">Inneholder '+itemCount);
	((itemCount > 1) || (itemCount == 0)) ? document.write(' varer') : document.write(' vare');
document.write('		</td>');
document.write('      </tr>');
for(tmpCount = 0; tmpCount < Cart.length; tmpCount++){
	itemCount += Number(Cart[tmpCount].qty);
	tempName = Cart[tmpCount].desc
	document.write('      <tr><td class="handlevogn small">');
//	document.write(tempName.substring(0,maxLengdeMiniCart) + '.. (' + Cart[tmpCount].qty + ')');
	(tempName.length > maxLengdeMiniCart) ? document.write(tempName.substring(0,maxLengdeMiniCart) + '.. (' + Cart[tmpCount].qty + ')') : document.write(tempName+' ('+Cart[tmpCount].qty+')');
	document.write('      </td></tr>');
}
document.write('      <tr>');
document.write('        <td class="handlevogn"><a href="'+cartPage+'">G&aring; til handlevognen</a></td>');
document.write('      </tr>');
document.write('      <tr>');
document.write('        <td><img src="/templates/images/bgHandlevognBottom.gif" width="178" height="11" border="0" alt="" /></td>');
document.write('      </tr>');
itemCount=0;

