function Movezoom()
{ 
zooming.style.posTop=document.body.scrollTop+165;
zooming.style.display="none";
}

function zoom(sourc)

{
     newWindow=window.open(sourc,"OurProducts","toolbar=0, location=0, directiries=0, status=0, menubar=0,scrollbars=yes,resizable=0,width=320,height=500")

}

function zoomOut()
{
zooming.style.display = "none";
}

function showMenu(posx,posy,ind)
{
hideAllMenu();
SubMenu2.style.display = "block";
SubMenu2.style.left = posx;
SubMenu2.style.top = posy;
}

function hideAllMenu()
{

   SubMenu2.style.display = "none";
   SubMenu2.style.left = 100;

}


