

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

	{
productList[0] = new Array('GREENANIMALSCMAT','43cm x 71cm Deluxe PVC Changing Mat ','7.50','43cm x 71cm Deluxe PVC Changing Mat ','lambsbabychangingmat.html');

	}		
}	



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

function createChangingMatChooser() 
{

document.write('<font size=2 face="Verdana"><br><br> <b>Pattern:</b> </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:submitChangingMatChooserForm()">');


document.write('<option value=BlueBears>Blue Bears');
document.write('<option value=BlueBearsandDucks>Blue Bears and Ducks');
document.write('<option SELECTED value=GreenAnimals>Green Animals');
document.write('<option   value=Lambs>Lambs');
document.write('<option value=OrangeDucks>Orange Ducks');

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







