

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

	{
		productList[0] = new Array('PATTERN3GREENYELLOWREDPOLYVISC','1m x 1.45m Pattern 3 Polyester/Viscose Material ','5.50','1m x 1.45m Pattern 3  Polyester/Viscose Material ');

	}		
}	



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

function createTartanChooser() 
{

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:submitTartanChooserForm()">');

document.write('<option   value=Burberry>Burberry');
document.write('<option   value=BlackWatch>Black Watch');
document.write('<option   value=EdinburghBlue>Edinburgh Blue');
document.write('<option  SELECTED value=Pattern3>Pattern 3');
document.write('<option   value=RedGreen>Red Green Tartan');
document.write('<option   value=RedTartan>Red Tartan');
document.write('<option   value=Stewart>Stewart');

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






