function SetCookie (name, value) 
   {

   var argv = SetCookie.arguments;

   var argc = SetCookie.arguments.length;

   var expires = null;

   var path = (argc > 3) ? argv[3] : null;

   var domain = (argc > 4) ? argv[4] : null;

   var secure = (argc > 5) ? argv[5] : false;

   document.cookie = name + "=" + escape (value) +

        ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +

        ((path == null) ? "" : ("; path=" + path)) +

        ((domain == null) ? "" : ("; domain=" + domain)) +

        ((secure == true) ? "; secure" : "");

   }

function SetTheCookie(ref,pvp)
   {

var expdate = new Date (); 

      expdate.setTime(expdate.getTime() + (24 * 60 * 60 * 1000 * 365)); 

var x=ref;
var y=pvp;
var w=x +"-"+ y;
var preg= 'Ha escogido ' + x + ' de ' + y + ' Euros \n¿Quiere continuar con el pedido?';
var result;
 result=confirm(preg);
 if (result) {
 SetCookie('bgandarias',w, expdate);  
 doMoveBrowser();
 }
 else{
  }
  }
  
  
     function doMoveBrowser() {
      top.location.href = 'Comprar2.htm';
    }
