function showHide(theLink,theId) {
	var theId = document.getElementById(theId);
	var theLink = document.getElementById(theLink);
	if(theId.style.display == 'block') {
		theId.style.display = 'none';
		theLink.innerHTML = "Send Creator a Message";
		theLink.className = "showLink"
	}
	else {
		theId.style.display = 'block';
		theLink.innerHTML = "Hide";	
		theLink.className = "hideLink"		
	}
}