

/*
 * initialiseProductList()
 */
function initialiseProductList()
{
	instock = "n"
	if ( productList.length == 0 )
	{
		/* productList[0] = new Array ('CB1','Pink strap changing bags','9.45','Pink strap changing bag ','changingbags.html'); */
productList[0] = new Array('WHITEFLEECE','1m X 1.5m Fleece','5.49','1m X 1.5m Fleece','fleece.html');

	}		
}	
	
function createFleeceChooser(flTypes) 
{
	thisType = "White";
	document.write('<font size=2 face="Verdana"> Pattern: </font>');
	document.write('<form style="margin-top: 0; margin-left: 0; margin-right: 0; margin-bottom: 0" name="Patternform" >');
	document.write('<select name="Patternselect" onchange="javascript:submitFleeceChooserForm()">');

	
	for (x in flTypes )
	{
		if ( flTypes[x] == thisType )
		{
			document.write('<option SELECTED  value='+ flTypes[x] + '>'+ flTypes[x] );
		}
		else
		{
			document.write('<option   value='+ flTypes[x] + '>'+ flTypes[x] );
		}		
	}
	document.write('</select>');
	document.write('</form>');

}


