<!--

		function promptHelp() {
			window.open("http://www.smurfworks.net/forum/forumHelp.php","SmurfWorks Forum Help","location=0,status=0,toolbar=0,menubar=0,resizable=0,width=650,height=400"); 
		}

		function showStrikes() {
			window.open("http://www.smurfworks.net/account/strikeList.php","Strikes Against your Account","location=0,status=0,toolbar=0,menubar=0,resizable=0,width=650,height=400"); }
		
		function clearContent() {
		  if (confirm("Are you sure you want to clear all of the written post?")) {
			document.replyContent.replyContent.innerHTML='';
			document.editPost.editContent.innerHTML='';
			}
		}

		function hideHelp()	{
			document.getElementById('assistance').innerHTML = "";
			document.getElementById('assistance').style.height = "0px";

		}

		function refresh_captcha() {
		var c_currentTime = new Date();
		var c_miliseconds = c_currentTime.getTime();
 
		document.getElementById('bot_protection').src = '../resources/global/captcha.php?x='+ c_miliseconds;

		}

		function help(scenario)	{

			var finalPlace=document.getElementById('assistance');

			if(scenario=="email") { var message = "If youve forgotten the email address that you signed up with, enter your current email, or one you may have used to see if it has been used to sign up here."; 

			}

			else if(scenario=="password") { var message = "If you know the email address that you used to sign up, enter it in and we will send you an email reminding you of your password.";
			 }

			else if(scenario=="displayName") { var message = "This name is used for other users to identify you, rather than learn your email address. This is required."; }

			else if(scenario=="actualName") { var message = "This is the name of the user behind the account - this is used when mailing prizes, recieving an award or being addressed formally for any reason. This is optional, but here for ease of access and is highly recommended."; }


			else { var message = "No assistance is available at this time. We apologise for this inconvience."; }

			if(document.getElementById('assistance').innerHTML==message) { 
			document.getElementById('assistance').innerHTML = "";
			document.getElementById('assistance').style.height = "0px";
			} else {
			finalPlace.innerHTML = message;
			finalPlace.style.height = "40px";
			finalPlace.innerHTML += "<br/><a class=\"button\" href=\"javascript:hideHelp()\">Hide Help</a>";
			}
		}

//-->