

/*
 * 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('MEAFSMALLSAVANNAH','Motherease Airflow Wraps','6.50','Motherease Airflow Wraps','mothereaseairflowwraps6-12lb.html');

	}		
}	

function createMothereaseAirflowWrapsChooser() 
{
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:submitMothereaseAirflowWrapsChooserForm()">');
document.write('<option   value=10-20lb>10-20lb');
document.write('<option  SELECTED value=6-12lb>6-12lb');
document.write('<option   value=20-35lb>20-35lb');
document.write('</select>');
document.write('</form>');
}


