function hide() {
	document.getElementById("cover").style.display = 'block';
	hideText = document.getElementById("hide");
	hideText.innerHTML = '<span>Show Me!</span>';
	hideText.href = 'javascript:show()';
	hideText.parentNode.style.opacity = .25;
	hideText.parentNode.style.filter = 'alpha(opacity=25)';
}

function show() {
	document.getElementById("cover").style.display = 'none';
	hideText = document.getElementById("hide");
	hideText.innerHTML = '<span class="red">Quick!</span><span>Hide Me!</span>';
	hideText.href = 'javascript:hide()';
	hideText.parentNode.style.opacity = .25;
	hideText.parentNode.style.filter = 'alpha(opacity=25)';
}

function sendURL() {
	process(document.getElementById("gotoInput").value, 'setURL'); 
}

function sendConfession(thread_date) {
	var url = 'send_confession.php?thread_date=' + thread_date;
	window.open(url, "SendAConfession", "width=300,height=150,toolbar=0,resizable=1,status=0");	
}

function getRules() {
	window.open('rules_popup.html', 'rules_popup', 'width=600,height=400,resizable=1,scrollbars=1,toolbar=0,status=0');
}