function Search()
{
 var search = document.getElementById('search').value;
 if (search != "")
 {
   var URL = "search.php?search="+search;
   document.location = URL;
 }
}
function CheckBrowser()
{
 var navName = navigator.appName ;
 if (navName == "Microsoft Internet Explorer")
 {
  document.getElementById('cart').style.position = "absolute";
  setTimeout("SlideCart()", 1);
 }
}
function SlideCart()
{
 document.getElementById('cart').style.top = document.documentElement.scrollTop + 450;
 setTimeout("SlideCart()", 10);
}