


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

	{
		/*                           
		   0= CODE
		   1= MATERIAL
		   2= PRICE
		   3= ITEM NAME
		*/		   
		
		productList[0] = new Array ('FLEECEBLANKETCOTORANGE','Microfleece cot blanket','11.45','Microfleece cot blanket');
	}		
}	







/*
 * createMicrofleeCotBlanketColourChooser()
 */
 
function createMicrofleeCotBlanketColourChooser()
{
	initialiseProductList();
	document.write('<font size=2 face="Verdana"> Colour: </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:submitMicrofleeceCotBlanketChooseColourForm()">');


	document.write('<option   value=Blue>Blue');
	document.write('<option  value=Green>Green');
	document.write('<option value=Lime>Lime');
	document.write('<option SELECTED value=Orange>Orange');
	document.write('<option value=Red>Red');
	document.write('<option value=Pink>Pink');
	document.write('<option  value=White>White');
	document.write('<option value=Yellow>Yellow');
	
	
	document.write('</select>');
	document.write('</form>');
}



