Member Login






Lost Password?

AMJ font module


<script language="javascript" type="text/javascript">

var min=8;
var max=18;
function increaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=max) {
         s += 1;
      }
      p[i].style.fontSize = s+"px"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=min) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px"
   }   
}

function amjfontsize( p ) {
    if ( p == 'enlarge' ) {
        increaseFontSize();
    } else if ( p == 'reduce' ) {
        decreaseFontSize() ;
    }
}


 </script>   
Lost your Password?
Please enter your Username and e-mail address then click on the Send Password button.
You will receive a new password shortly. Use this new password to access the site.
Username:
E-mail Address:
© 2010 The Kelvin Club Inc (Reg No A0027845V) - best viewed in IE6+