


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

	{
		productList[0] = new Array ('TOTSBOTSFLUF1','5-18lbs','6.50','Tots Bots Fluffles Nappy','totsbotsflufflesnappies.html');
	}		
}	

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







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

	document.write('<option  SELECTED value=FLUF1>5-18lbs');
	document.write('<option value=FLUF2>Birth to Toddler (40lb)');

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


