// JavaScript Document
if(document.all && !document.getElementById) { //IE4 support
  document.getElementById = function(id) { return document.all[id]; }
}
function showContactForm(){
	document.getElementById('contactform').style.display='block';
}
function hideContactForm(){
	document.getElementById('contactform').style.display='none';
}
