


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

	{
		productList[0] = new Array ('TOTSBOTSYELLOWSPOT3','Tots Bots Yellow Spot Nappy Cover (35lb+)','6.50','Tots Bots Yellow Spot Nappy Cover (35lb+)');
	}		
}	





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








/*
 * createTotsBotsYellowSpotCoverSizeChooser()
 */

function createTotsBotsYellowSpotCoverSizeChooser()
{

	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:submitTotsBotsYellowSpotCoverChooseSizeform()">');

	document.write('<option  value=S0>Size 0 (birth to 12 lb)');
	document.write('<option  value=S1>Size 1 (10-20lbs)');
	document.write('<option value=S2>Size 2 (20-35lbs)');
	document.write('<option SELECTED value=S3>Size 3 (35+lbs)');
	


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


