  var hasError = false;
  $(document).ready(function(){
	  //Script goes here
	  $("#tx-pastebin-pi1-submit").click(function(){
		  var isPaste = $("#tx-pastebin-pi1-post-input").val();
		  if ((isPaste == '') && (hasError == false)){
			  $("#tx-pastebin-pi1-post-input").before('<span id="tx-pastebin-pi1-error-paste" class="tx-pastebin-pi1-error">You forgot to paste anything.</span>');
			  hasError = true;
		  }
		  if (isPaste != ''){
			  if (hasError == true) $("#tx-pastebin-pi1-error-paste").hide();
			  var formData = $("#tx-pastebin-pi1-form").serialize();
			  $("#tx-pastebin-pi1-form").after('<div style="margin-top: 30px; width:100%; text-align:center;">Please wait while your paste is being submitted...</span>');
			  $.post("/t3/tsp/?type=979",
			  formData,
				  function(data){
					  window.location = data.url;
				  },"json");
			  $("#tx-pastebin-pi1-form").slideUp("fast",
			  function () {$("#tx-pastebin-pi1-spinner").fadeIn("slow");}
			  );
		  }
		  return false;
	  });
  });

