after some debugging i found the reason for the js-error ie reported all the time ...

here is a simple solution ... ignore the Statement 'Don't change anything past this point ----------------- ' in the script-part and replace

  1. function s(a,b,i,x){  
  2.   if(a>b){  
  3.       var m=(a-b)/Math.log(x),v=a-Math.floor(Math.log(i)*m)  
  4.          }  
  5.   else{  
  6.       var m=(b-a)/Math.log(x),v=Math.floor(Math.log(i)*m+a)  
  7.       }  
  8.   return v  
  9. }  

with
  1. function s(a,b,i,x){  
  2.  var m = 1;  
  3.  var v = 1;  
  4.   
  5.  if(a>b){  
  6.     if (Math.log(x) > 0)  {  
  7.        m = (a-b)/Math.log(x);  
  8.     } else {  
  9.        m = 1;  
  10.     }  
  11.     var v=a-Math.floor(Math.log(i)*m)  
  12.  } else {  
  13.     if (Math.log(x) > 0)  {  
  14.        m = (b-a)/Math.log(x);  
  15.     } else {  
  16.        m = 1;  
  17.     }  
  18.     v=Math.floor(Math.log(i)*m+a)  
  19.  }  
  20.     
  21.  return v;  
  22. }  

now you shouldn't have any problems ...

Related Posts by Categories



Widget by Hoctro | Jack Book