
function ajaxContent() 
{  
  this.getLink = function(args) 
  {
    $('#innerContentDiv').load('/' + this.URLEncode(channelName) + '/' + 'index.php?module=innerContent&' + args);
  }

  this.searchReset = function() {
    this.getLink("");
  }

  this.searchSubmit = function() {
    var channel2 = document.getElementById('channel2');
    var category = document.getElementById('category');
    var keyword = document.getElementById('keyword');
    this.getLink("channel2=" + channel2.value + "&category=" + category.value + "&keyword=" + this.URLEncode(keyword.value));
  }
 
  this.URLEncode = function(clearString) 
  {
	return encodeURIComponent(clearString).replace(/!/g, '%21').replace(/'/g, '%27').replace(/\(/g, '%28').
                                                                    replace(/\)/g, '%29').replace(/\*/g, '%2A').replace(/%20/g, '+');
  }
}


