

/*
 * initialiseProductList()
 */
function initialiseProductList()
{
	instock = "n"
	if ( productList.length == 0 )
	{
		productList[0] = new Array('BLUESHEEPFLEECE','1m X 1.5m Fleece','5.49','1m X 1.5m Fleece');

	}

		
}	





function createFleeceChooser(flTypes) 
{
	thisType = "BlueSheep";
	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>');

}






