		function getScriptPage(more_options,act_id)
		{
			commentsOutputLocation = "commentsOutput";
			
			commentInputParentIDVar = document.getElementById("commentInputParentID").value;
			commentInputNameVar = document.getElementById("commentInputName").value;
			commentInputEMailVar = document.getElementById("commentInputEMail").value;
			commentInputCommentVar = document.getElementById("commentInputComment").value;
			commentInputCaptchaVar = document.getElementById("commentInputCaptcha").value;
			

			switch(more_options)
			{
				case '1':
				{
  			      http.open("GET", "/system/comments/comment.php?parentID=" + escape(commentInputParentIDVar) + "&name=" + escape(commentInputNameVar) + "&mail=" + escape(commentInputEMailVar)+"&comment=" + escape(commentInputCommentVar)+"&captchaValue=" + escape(commentInputCaptchaVar), true);
				}
				break;
				case '2':
				{
				  http.open("GET", "comment.php?delete=1&id=" + escape(act_id), true);
				}
				break;
			}

			http.onreadystatechange = handleHttpResponse;
			http.send(null);

			resetCommentInputForm();

		}
		function resetCommentInputForm()
		{
			document.getElementById("commentInputName").value="";
			document.getElementById("commentInputEMail").value="";
			document.getElementById("commentInputComment").value="";
			document.getElementById("commentInputCaptcha").value="";
		}
		
		function showCommentsInput()
		{
			document.getElementById("commentsInput").style.display = 'block';
			document.getElementById("commentsShowInput").style.display = 'none';
		}

		