		
if((navigator.appName == "Netscape")&& (parseInt(navigator.appVersion) < 5))
	{
		document.write('<link rel="stylesheet" href="../ns.css" type="text/css">'); 
	}
	else
	{
	
		document.write('<link rel="stylesheet" href="../ie.css" type="text/css">'); 
	}


//Used in the process order page(confirm_order page)
   var firstClickTime = 0;
   function waitedFor(acceptableWait) // acceptable # of SECONDS
   {
  
      if (firstClickTime == 0)
      {
         var firstClickDate = new Date(); // current date & time
         firstClickTime = firstClickDate.getTime() // MILLISECONDS since
                                                   // Jan. 1, 1970
         return true; // okay; first click
        
      }
      else
      {
         var secondClickDate = new Date(); // current date & time
         var secondClickTime = secondClickDate.getTime(); // MILLISECONDS
         if ( (secondClickTime - firstClickTime) < (acceptableWait*1000) )
         {
   alert("Your order may take up to 1 minute to process.\n Please be patient.");
            return false; // not acceptable - this was a "double-click"
         }
         else
         {
            // They've clicked again, after waiting; reset firstClickTime
            // so that they (still) can't double click. This accounts for
            // the times when their request is lost by the Internet.
            var firstClickDate = new Date();
            firstClickTime = firstClickDate.getTime();
            return true;
         }
      }
   }

