﻿function mailpage()
{
  mail_str = "mailto:?subject= - " + document.title;
  mail_str += "&body=You may be interested in the following page on the SkateNSW website. " + location.href;
  mail_str += "  (Please click on the link if your email software allows otherwise copy and paste the whole link into your web browser to view the page)";
  location.href = mail_str;
}

function resizeUp() {
	if(!document.getElementById('cim_page_wrapper').style.fontSize){
		document.getElementById('cim_page_wrapper').style.fontSize = '90%';
	} else {
		var str_fontsize = document.getElementById('cim_page_wrapper').style.fontSize;
		var num_fontsize = str_fontsize.substring(0,str_fontsize.length-1);
		//alert(num_fontsize);
		var num_newsize = num_fontsize * 1.1;
		document.getElementById('cim_page_wrapper').style.fontSize = num_newsize + '%';
	}
}

function resizeZero() {
	document.getElementById('cim_page_wrapper').style.fontSize = '80%';
}

function resizeDown() {
	if(!document.getElementById('cim_page_wrapper').style.fontSize){
		document.getElementById('cim_page_wrapper').style.fontSize = '70%';
	} else {
		var str_fontsize = document.getElementById('cim_page_wrapper').style.fontSize;
		var num_fontsize = str_fontsize.substring(0,str_fontsize.length-1);
		//alert(num_fontsize);
		var num_newsize = num_fontsize * 0.9;
		document.getElementById('cim_page_wrapper').style.fontSize = num_newsize + '%';
		//alert(num_newsize + '%');
	}
}
