


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

	{
		productList[0] = new Array ('TOTSBOTSTRIPEYFLEECEWRAP0','Tots Bots Stripey Fleece Wrap (birth to 10lbs)','6.00','Tots Bots Stripey Fleece Wrap (birth to 10lbs)');
	}		
}	




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









/*
 * createTotsBotsStripeyFleeceWrapSizeChooser()
 */

function createTotsBotsStripeyFleeceWrapSizeChooser()
{

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

	document.write('<option SELECTED   value=S0>birth to 10lbs');
	document.write('<option value=S1>10 to 20lbs');
	document.write('<option  value=S2>20 to 35lbs');
	document.write('<option  value=S3>35lbs+');
	


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


