var shareLock = "no";
var shareStatus = "closed";

	function showShare() {
		if(shareLock == "no" && shareStatus == "closed") {
			shareLock = "yes";
			$('shareContainer').style.display = "";
			new Effect.Move('shareBox', { x: 0, y: 205 });
			setTimeout(function() {
				shareLock = "no";
				shareStatus = "open";
			}, 1000);
		}
	}
		
	function closeShare() {
		if(shareLock == "no" && shareStatus == "open") {
			shareLock = "yes";
			new Effect.Move('shareBox', { x: 0, y: -205 });
			setTimeout(function() {
				$('shareContainer').style.display = "none";
				shareLock = "no";
				shareStatus = "closed";
			}, 1000);
		}	
	}
	
	function checkShare() {
		if($('your_name').value != "" && $('your_email').value != "" && $('friend_email').value != "") {
			document.shareEmail.submit();
		}
	}