<!--

function emailPage(){

  page_url = document.location.href;

  email_body = "Please review the information on the following CEAC web page:\n\n" + page_url + "."; 
  email_body += "\n\nYou can become a member here: http://ceac.org/site/register";
  email_body += "\n\n";

  mail_str = "mailto:?subject=Information on California Employer Advisory Council website (ceac.org)";
  mail_str += "&body=" + escape (email_body);

  location.href = mail_str;

}

var minTxtSize = .7;
var maxTxtSize = 1.5;
var i = .7;

function incSize() {
	var num = i++;
	var body = document.getElementById("body");
	if(maxTxtSize != i){
		body.style.fontSize = num + "em";
	} else {
		document.getElementById("size_up").disabled = true;
		return;
	} 
}

function decSize() {
	var num = i--;
	var body = document.getElementById("body");
	if(minTxtSize != i){
		body.style.fontSize = num + "em";
	} else {
		document.getElementById("size_dn").disabled= false;
		return;
	} 
}

-->