function addToCart(sku,idx)
{
	var val = document.productlist.KEYS.value;
	if (val==""||val=="undefined"||val==null) val = sku;
	else val = val + "," + sku;
	document.productlist.KEYS.value = val;
	document.productlist.elements[idx].value = "SELECTED";
}

function addQty(c)
{
	if (document.getElementById)
	{
		if(document.getElementById("mqty"+c)) var theqty = document.getElementById("mqty"+c);
		if(document.getElementById("button"+c)) var thebutton = document.getElementById("button"+c);
	} 
	else if (document.all) 
	{
		if(document.all("mqty"+c)) var theqty = document.all("mqty"+c);
		if(document.all("button"+c)) var thebutton = document.all("button"+c);	
	}
	// toggle the values
	if (thebutton.value=="SELECTED")
	{ 
		theqty.value=0; thebutton.value="SELECT";
	}
	else if (thebutton.value=="SELECT") 
	{
		theqty.value=1; thebutton.value="SELECTED";
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
