

/*
 * initialiseProductList()
 */
function initialiseProductList()
{
	instock = "n"
	if ( productList.length == 0 )
	{
		productList[0] = new Array('BLUEGINGPOLYCOTTON14','1m * 1.12m Blue Gingham PolyCotton','2.95','1m * 1.12m Blue Gingham PolyCotton','redginghampolycotton.html');
	}		
}	


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

function createGinghamPolyCottonColourChooser() 
{
	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="Patternform" >');
	document.write('<select name="Patternselect" onchange="javascript:submitGinghamPolycottonColourChooserForm()">');

	document.write('<option  value=BlueFlower>Blue Flower');
	document.write('<option SELECTED value=BlueGingham>Blue Gingham');
	document.write('<option  value=GreenGingham>Green Gingham');
	document.write('<option  value=RedGingham>Red Gingham');
	document.write('<option  value=PinkGingham>Pink Gingham');
	document.write('<option  value=PurpleGingham>Purple Gingham');
	document.write('<option  value=Strawberry>Strawberry');
	document.write('<option  value=Stripes>Stripes');	

	document.write('</select>');
	document.write('</form>');
}

