function OpenCart(pfad)
{ var cart = open('', 'cart','height=160,width=300,hotkeys=no,locationbar=no,menubar=no,resizable=yes,status=no');
  window.focus();
  if (cart.document.title != "Magiclegs Warenkorb")
     {cart.document.location.href=pfad+"tcart.htm";
			i=0; while ((cart.detail!=-1)&&(i<1000)) {i++;}
		 }
  return cart;
}

function Detail(m_skip, m_abs, m_para, m_shop)
{var m_href; m_href="";
 if (m_skip==0)
     m_cart.m_detail=m_abs ;
 if ( (location.search.indexOf('mlcart') > 0) || (m_para == "mlcart") )
    {m_cart.m_detail += m_skip;
     if (m_cart.m_detail >= m_cart.m_artarr.length || m_cart.m_detail < 0)
        {m_cart.m_detail = -1; m_cart.CShow(); return; }
     else
		    {if (m_shop!=true)   m_href="shop/";
         m_href=m_href+"d"+m_cart.m_artarr[m_cart.m_detail].artno; }
    }
 else
    {if (m_skip < 0)
         m_href=self.m_skipback ;
     else
         m_href=self.m_skipforw ;
    }
 if (m_href.indexOf(".htm",0) < 0) m_href = m_href+".htm";
 if (typeof(m_para) == "string")   m_href =	m_href+"?"+m_para+"&";
 m_href = m_href + location.search.substr(1);

 if (m_skip==0)
     self.location.href =  m_href ;
 else
     self.location.replace(m_href) ;
}


