var vProducts = [
			'<div><a href="./bags.htm"><img alt="Standard Bag" border="0" src="./images/standardbag_right.png" align="left" /></a><h1>Standard Bag</h1>The standard four loop bags is a workhorse design for FIBCs</div>',
			'<div><a href="./bags.htm"><img alt="Form Stabilised Bag" border="0" src="./images/formstabilisedbag_right.png" align="left" /></a><h1>Form Stabilised Bag</h1>FIBCs with inner construction of baffles sewn to the main fabric</div>',
			'<div><a href="./bags.htm"><img alt="Conical Bag" border="0" src="./images/conicalbag_right.png" align="left" /></a><h1>Conical Bag</h1>FIBCs especially suitable to pack <b>Tacky</b> (not so free flowing) products</div>',
			'<div><a href="./bags.htm"><img alt="Cross Corner Bag" border="0" src="./images/crosscornerbag_right.png" align="left" /></a><h1>Cross Corner Bag</h1>Cross Corner loop bag has loops stitched on the body of the main fabric</div>',
			'<div><a href="./bags.htm"><img alt="Ventillated Bag" border="0" src="./images/ventillatedbag_right.png" align="left" /></a><h1>Ventillated Bag</h1><b>Breathable</b> bags are FIBCs where the fabric has breathable stripes</div>',
			'<div><a href="./bags.htm"><img alt="Tunnel Loop Bag" border="0" src="./images/tunnelloopbag_right.png" align="left" /></a><h1>Tunnel Loop Bag</h1>Excellent for ease of and manipulating the FIBCs with a fork-lift</div>',
			'<div><a href="./bags.htm"><img alt="Tubular FIBC" border="0" src="./images/tubularfibc_right.png" align="left" /></a><h1>Tubular FIBC</h1>Excellent for ease of lifting and manipulating the FIBCs with a fork-lift</div>',
			'<div><a href="./bags.htm"><img alt="UN Bag" border="0" src="./images/unbag_right.png" align="left" /></a><h1>UN Bag</h1>Special types of bags used for transportation of dangerous materials</div>',
			'<div><a href="./bags.htm"><img alt="Conductive Bag" border="0" src="./images/conductivebag_right.png" align="left" /></a><h1>Conductive Bag</h1>Bags that conduct the charges generated at the time of filling and emptying of product</div>'
		];
		
var maxProducts = vProducts.length;
				

function RenderRightPane()
{
	if(maxProducts<1) maxProducts = vProducts.length;
	if(maxProducts>vProducts.length) maxProducts = vProducts.length;
	
	var vHTML = '';
	for(var i=0; i<maxProducts; i++) vHTML += vProducts[i] + '<img border="0" src="./images/rightline.jpg" width="172" height="1" />';
	vHTML += '<div class="all">» <a title="View All Products" href="./bags.htm">View All Products</a></div>';
	
	var obj = document.getElementById('rightbar'); if(!obj) return;
	obj.innerHTML = vHTML;
}

if(window.attachEvent) window.attachEvent('onload', RenderRightPane);
else window.addEventListener('load', RenderRightPane, false);
