function mailpage()
{
mail_str = "mailto:?subject=" + document.title;
mail_str += "&body= " + document.title;
mail_str += "... at: " + location.href;
location.href = mail_str;
}

function changeFontSize(inc)
{
  var p = document.getElementsByTagName('p');
  for(n=0; n<p.length; n++) {
    if(p[n].style.fontSize) {
       var size = parseInt(p[n].style.fontSize.replace("px", ""));
    } else {
       var size = 11;
    }
		if(inc == 0){
				p[n].style.fontSize = '11px';
		}else{
				p[n].style.fontSize = size + inc + 'px';
		}
   }
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
