var ref;
var pathcmd='http://ftfi.frogcart.net/';


function remplace(text,find,repl){
  var found = text.indexOf(find);
  var retVal= ""; var start = 0;
  while(found != -1){
    retVal +=text.substring(start,found) +repl;
    start = found+find.length;
    found =text.indexOf(find,start);
  }
  retVal +=text.substring(start,text.length);
  return retVal;
}


function FcAdd(ref){
ref = remplace(ref,"+","%2B");
win2=window.open(pathcmd+"default.asp?ref="+ref,"frogcart","location=no,menubar=no,scrollbars=yes,status=yes,resizable=no,width=680,height=550");
win2.focus();
//win2.moveTo(0,0);
}

function FcAddMini(ref){
ref = remplace(ref,"+","%2B");
win2=window.open(pathcmd+"default.asp?view=article&ref="+ref,"frogcart","location=no,menubar=no,scrollbars=yes,status=no,resizable=yes,width=500,height=150");
win2.focus();
//win2.moveTo(0,0);
}

function FcView(){
win2=window.open(pathcmd+"default.asp","frogcart","location=no,menubar=no,scrollbars=yes,status=yes,resizable=yes,width=680,height=550");
win2.focus();
//win2.moveTo(0,0);
}