


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

	{
		productList[0] = new Array ('NBSMALLSTUFFABLEBUBBLE','(6-14lbs)','8.50','Nature Babies Deluxe Stuffable Bubble Nappy  (6-14lb)','nbbubblestuffablenappy.html');
	}		
}	











/*
 * createNBPinkGinghamCoverSizeChooser()
 */

function createNBPinkGinghamCoverSizeChooser()
{

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

	document.write('<option SELECTED   value=Small>Small (6-14lbs)');
	document.write('<option value=Medium>Medium (10-25lbs)');


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


