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 = 12;
    }
    p[n].style.fontSize = size+inc + 'px';
   }

  var p = document.getElementsByTagName('h2');
  for(n=0; n<p.length; n++) {
    if(p[n].style.fontSize) {
       var size = parseInt(p[n].style.fontSize.replace("px", ""));
    } else {
       var size = 12;
    }
    p[n].style.fontSize = size+inc + 'px';
   }
}


function check_form() {
	if (document.getElementById('contactname').value == '') {
							alert('Please fill in the Name field');
							document.getElementById('contactname').focus();
							return false;
							}
	if (document.getElementById('contactmail').value == '') {
							alert('Please fill in the Email field');
							document.getElementById('contactmail').focus();
							return false;
							}
	
	return true;
	}
