

/*
 * initialiseProductList()
 */
function initialiseProductList()
{
	instock = "n";
	if ( productList.length == 0 )
	{
		productList[0] = new Array('JUNGLECAMOFLEECEROLL','15m X 1.5m Jungle Camouflage Fleece','87.99','15m X 1.5m Jungle Camouflage Fleece');
	}		
}	
	
function createFleeceRollChooser(flTypes) 
{
	thisType = "CamouflageRoll";
	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:submitFleeceRollChooserForm()">');

	
	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>');

}