

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

	{
		/* productList[0] = new Array ('CB1','Pink strap changing bags','9.45','Pink strap changing bag ','changingbags.html'); */
productList[0] = new Array('BABBAM1A','Babeco Bamboo Nappy','6.99','Babeco Bamboo Nappy','babecobamboonappy9-25lbs.html');

	}		
}	

function createBabecoBambooNappyChooser() 
{
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:submitBabecoBambooNappyChooserForm()">');
document.write('<option   value=18-35lbs>18-35lbs');
document.write('<option   value=30+lb>30+lb');
document.write('<option  SELECTED value=9-25lbs>9-25lbs');
document.write('</select>');
document.write('</form>');
}





