


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

	{
		productList[0] = new Array ('TOTSBOTSBAMDAYPACK1','Size 1 Bamboo Day Pack 8-18lbs','49.00','Size 1 Bamboo Day Pack  8-18lb (Aplix)');
	}		
}	

function getPrice()
{
	document.write(productList[0][2]);	
}	




/*
 * createTotsBotsBambooDayPackSizeChooser()
 */
function createTotsBotsBambooDayPackSizeChooser()
{
	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:submitTotsBotsBambooDayPackAplixChooseSizeform()">');

	document.write('<option  SELECTED value=BAM1>Size 1 8-18lbs');
	document.write('<option value=BAM2>Size 2 18-40lbs');

	document.write('</select>');
	document.write('</form>');
}



