


/*
 * initialiseProductList()
 */
function initialiseProductList()
{
	instock = "d";
brand = 'tots';
if ( productList.length == 0 )

	{
		productList[0] = new Array ('TOTSBOTSBAMTRIALPACK1','Size 1 Bamboo Trial Pack 8-18lbs','15.00','Size 1 Bamboo Trial Pack  8-18lb (Aplix)');
	}		
}	

function getPrice()
{
	document.write(productList[0][2]);	
}	




/*
 * createTotsBotsBambooTrialPackSizeChooser()
 */
function createTotsBotsBambooTrialPackSizeChooser()
{
	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:submitTotsBotsBambooTrialPackAplixChooseSizeform()">');

	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>');
}



