

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

	{
		/* productList[0] = new Array ('CB1','Pink strap changing bags','9.45','Pink strap changing bag ','changingbags.html'); */
productList[0] = new Array('ELLANAPPYTANGERINELARGE','Ellas House Tangerine Bumhugger Nappy','7.50','Ellas House Tangerine Bumhugger Nappy','ellashousetangerinebumhuggernappy2.html');
productList[1] = new Array('ELLANAPPYTANGERINESMALL','Ellas House Tangerine Bumhugger Nappy','7.50','Ellas House Tangerine Bumhugger Nappy','ellashousetangerinebumhuggernappy.html');

	}		
}	

function createEllasHouseTangerineBumhuggerNappyChooser() 
{
initialiseProductList();
document.write('<font size=2 face="Verdana"> Size: </font>');
document.write('<form style="margin-top: 0; margin-left: 0; margin-right: 0; margin-bottom: 0" name="Sizeform" >');
document.write('<select name="Sizeselect" onchange="javascript:submitEllasHouseTangerineBumhuggerNappyChooserForm()">');
document.write('<option   value=15to40lb>15to40lb');
document.write('<option   SELECTED value=to20lb>to20lb');
document.write('</select>');
document.write('</form>');
}



function submitEllasHouseTangerineBumhuggerNappyChooserForm() 
{
document.Sizeform.submit();
var Size = document.Sizeform.Sizeselect.options[document.Sizeform.Sizeselect.selectedIndex].value;
 if ( Size.indexOf('15to40lb') != -1 )
{
document.location='ellashousetangerinebumhuggernappy2.html'
}
 if ( Size.indexOf('to20lb') != -1 )
{
document.location='ellashousetangerinebumhuggernappy.html'
}
}


