function shipinfo(sType)
{ var xWin = window.open('ship-'+sType+'info.html','window2','height=380,width=600,scrollbars,resizable')}

function window2(sURL)
{ var xWin = window.open(sURL) }

function addtocart(sItem)
{
  CartForm=document.ToCart
  CartForm.action='http://order.store.yahoo.net/cgi-bin/wg-order?kidenergy+' + sItem
  CartForm.vwitem.value=sItem
  CartForm.submit()
}

