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="" />Basket</div></td>');
document.write('      </tr>');
document.write('      <tr>');
document.write('        <td class="handlevogn boldSmall">');
							if (itemCount == 0) {
								document.write('There are no items in your basket');
							}
							else if (itemCount == 1) {
								document.write('There is '+itemCount+' item in your basket');
							}
							else {
								document.write('There are '+itemCount+' items in your basket');	
							}
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 view"><a href="'+cartPage+'">View basket</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;

