


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

	{
		productList[0] = new Array ('ELLANAPPYPINKCHECKSMALL','to 20lbs','7.50','Ellas House Pink Check Bumhugger (to 20lb)','ellashousepinkcheckbumhuggernappy.html');
	}		
}	





/*
 * createEllasHouseBumhuggerSizeChooser()
 */
function createEllasHouseBumhuggerSizeChooser()
{
	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:submitEllasHousePinkCheckChooseSizeform()">');

	document.write('<option  SELECTED value=Small>Small to 20lbs');
	document.write('<option value=Large>Large 15-40lbs');

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


