


/*
 * initialiseProductList()
 */
function initialiseProductList()
{
	instock = "n";
brand = 't2c';
if ( productList.length == 0 )

	{
		productList[0] = new Array ('NAPBRIGHT','Nappy Bright','3.50','Nappy Bright Antibacterial Nappy Cleanser');
	}		
}	



/*
 * createNappyBrightAddToCartFormBody()
 */
function createNappyBrightAddToCartFormBody()
{
	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="2.00">');
	document.write('<input type="hidden" name="shipping2" value="2.00">');

}	




/*
 *generateLinersOrderForm
 */
function generateNappyBrightOrderForm()
{
	
	
		document.write('<tr style="border-style: solid; border-color: black;">');		
		document.write('<td style="border-style: solid; border-color: black;" width=150><font face="Verdana" size=2">Nappy Bright Antibacterial Cleanser</font></td>');		
		document.write('<td style="border-style: solid; border-color: black;" width=175><font face="Verdana" size=2"> NA  </font></td>');				
		document.write('<td  align=right style="border-style: solid; border-color: black;" width=125 > <font face="Verdana" size=2">Qty:__ </font></td>');				
		document.write('<td style="border-style: solid; border-color: black;" width=25><font face="Verdana" size=2"> £3.00</font></td>');		
		document.write('<td style="border-style: solid; border-color: black;" width=25 align=middle >__</td>');		
		document.write('</tr>');								
	
}	



