function emailThisPage()
{
name=document.URL;
window.location="mailto:?Subject=Have a look!! &Body=Dear Friend,%0D%0A%0D%0A I would like you to have a look at the following URL:-%0D%0A%0D%0A "+name+"%0D%0A%0D%0AThis URL is a part of Power Great Lakes website (www.powergreatlakes.com) and contains information that might be useful for you.%0D%0A%0D%0AHope you find it useful.%0D%0A%0D%0AWarm regards";	
}


function getKeyCode(e)
{
 if (window.event)
    return window.event.keyCode;
 else if (e)
    return e.which;
 else
    return null;
}


function keyRestrict(e, validchars) {
 var key='', keychar='';
 key = getKeyCode(e);
 if (key == null) return true;
 keychar = String.fromCharCode(key);
 keychar = keychar.toLowerCase();
 validchars = validchars.toLowerCase();
 if (validchars.indexOf(keychar) != -1)
  return true;
 if ( key==null || key==0 || key==8 || key==9 || key==13 || key==27 )
  return true;
 return false;
}