


/*
 * initialiseProductList()
 */
function initialiseProductList()
{
	instock = "d";
brand = 'tots';
if ( productList.length == 0 )

	{
		productList[0] = new Array ('TOTSBOTSCTW1','(9-20lbs)','7.00','Tots Bots Cherry Dot Nappy Cover (9-20lb)','totsbotscherrydotnappycovers.html');
	}		
}	






function getPrice()
{
	document.write(productList[0][2]);	
}	







/*
 * createTotsBotsCherryDotCoverSizeChooser()
 */

function createTotsBotsCherryDotCoverSizeChooser()
{

	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:submitTotsBotsCherryDotCoverChooseSizeform()">');

	document.write('<option SELECTED   value=STW1>CTW1 9-20lbs');
	document.write('<option value=STW2>CTW2 18-35lbs');
	


	document.write('</select>');
	document.write('</form>');
}


