


/*
 * initialiseProductList()
 */
function initialiseProductList()
{
	instock = "d";
brand = 'tots';
if ( productList.length == 0 )

	{
		productList[0] = new Array ('TOTSBOTSSTW1','(9-20lbs)','7.00','Tots Bots Strawberry Nappy Cover (9-20lb)','totsbotsStrawberrycovers.html');
	}		
}	





function getPrice()
{
	document.write(productList[0][2]);	
}	








/*
 * createTotsBotsStrawberryCoverSizeChooser()
 */

function createTotsBotsStrawberryCoverSizeChooser()
{

	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:submitTotsBotsStrawberryCoverChooseSizeform()">');

	document.write('<option  value=STW0>STW0 6-14lbs');
	document.write('<option SELECTED   value=STW1>STW1 9-20lbs');
	document.write('<option value=STW2>STW2 18-35lbs');
	document.write('<option value=STW3>STW3 35+lbs');
	


	document.write('</select>');
	document.write('</form>');
}


