/*
scripts.js
*/

function showCard() {
 	var c=document.getElementById('PostCard');
 	if (c.style) {
 	 	c.style.display='block';
 	 	c.style.visibility='visible';
 	}
}

function hideCard() {
 	var c=document.getElementById('PostCard');
 	if (c.style) {
 	 	c.style.display='none';
 	 	c.style.visibility='hidden';
 	}
}
