function move (id,len)
{
for (var i=1;i<=len;i++)
{
var e= document.getElementById("product"+i);
e.style.display = 'none';
//document.getElementById("img"+i).src="images/plus.gif";
}
var t = document.getElementById("product"+id);
t.style.display = 'block';
//document.getElementById("img"+id).src="images/min.gif";
}
