


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

	{
		/*                           
		   0= CODE
		   1= MATERIAL
		   2= PRICE
		   3= ITEM NAME
		*/		   
		
		productList[0] = new Array ('SHAWL1','Baby shawl','8.00','Baby shawl');
	}		
}	









