

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

	{
		productList[0] = new Array('BLUECHIFFON','100 cm X 112 cm Blue Chiffon ','4.30','100 cm X 112 cm Blue Chiffon','lilacchiffonfabric.html');

	}		
}	



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

function createChiffonChooser() 
{

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="Colourform" >');
document.write('<select name="Colourselect" onchange="javascript:submitChiffonChooserForm()">');
document.write('<option  SELECTED value=Blue>Blue');
document.write('<option   value=Mint>Mint');
document.write('<option   value=Lilac>Lilac');
document.write('<option    value=White>White');

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







