


/*
 * initialiseProductList()
 */
function initialiseProductList()
{
	instock = "n";
brand = 't2c';
if ( productList.length == 0 )

	{
		/*                           
		   0= CODE
		   1= MATERIAL
		   2= PRICE
		   3= ITEM NAME
		*/		   
		
		productList[0] = new Array ('NAPBUCK2','Bucket','6.99','16 Litre Nappy Bucket');
	}		
}	




/*
 * create16LBucketAddToCartFormBody()
 */
function create16LBucketAddToCartFormBody()
{
	product = getCurrentProduct(filename);

	document.write('<font face="verdana" size=2> Add to Cart </font>');
	document.write('<input type="image" src="images/cart.gif" border="0" name="submit" alt="Add this item to your shopping cart">');
	document.write('<input type="hidden" name="add" value="1">');
	document.write('<input type="hidden" name="cmd" value="_cart">');
	document.write('<input type="hidden" name="business" value="payments@time2changeuk.com">');
	document.write('<input type="hidden" name="item_name" value="'+product[3]+'">');
	document.write('<input type="hidden" name="item_number" value="'+product[0]+'">');
	document.write('<input type="hidden" name="amount" value="'+product[2]+'">');
	document.write('<input type="hidden" name="page_style" value="time2Change">');
	document.write('<input type="hidden" name="no_note" value="1">');
	document.write('<input type="hidden" name="currency_code" value="GBP">');
	document.write('<input type="hidden" name="lc" value="GB">');
	
	document.write('<input type="hidden" name="shipping" value="0.00">');
	document.write('<input type="hidden" name="shipping2" value="0.00">');
	
/*	document.write('<input type="hidden" name="shipping" value="3.40">');
	document.write('<input type="hidden" name="shipping2" value="1.50">'); */

}	



/*
 * createBucketSizeChooser()
 */
 
function createBucketSizeChooser()
{
	initialiseProductList();
	document.write('<font size=2 face="Verdana"> Size: </font>');
	document.write('<form style="margin-top: 0; margin-left: 0; margin-right: 0; margin-bottom: 0" name="sizeform" >');
	document.write('<select name="sizeselect" onchange="javascript:submitNappyBucketChooseSizeform()">');

	document.write('<option  value=9l>9 Litre');
	document.write('<option  SELECTED value=16l>16 Litre');

	document.write('</select>');
	document.write('</form>');
}



