


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

	{
		/*                           
		   0= CODE
		   1= MATERIAL
		   2= PRICE
		   3= ITEM NAME
		*/		   
		
		productList[0] = new Array ('BABYSLEEPINGBAGBLUE6TO18','Baby Sleeping Bag (Blue) 6 to 18 months','15.00','Baby Sleeping Bag (Blue) 6 to 18 months');
	}		
}	







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

	
	document.write('<option   value=0to6>0 to 6 months');
	document.write('<option SELECTED value=6to18>6 to 18 months');
	document.write('</select>');
	document.write('</form>');
}



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