


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

	{
		productList[0] = new Array ('TOTSBOTSTB1','8-18lbs','6.00','Tots Bots without Aplix Shaped Nappy(8-18lbs)','totsbots.html');
	}		
}	



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




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

	document.write('<option  SELECTED value=TB1>TB1 8-18lbs');
	document.write('<option value=TB2>TB2 18-40lbs');

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


