	$(document).ready(function(){
		$("div.title").click(function(event) {
		  event.preventDefault();
		  var mytext = trim($(this).text());
		  mytext = mytext.replace("/","");
		  mytext = mytext.replace(/&/g,"");
		  mytext = mytext.replace(/\s+/g,"-") + "_W0QQitemZ"+$(this).attr("id");
		  var linkWin = window.open("/advert_summary.php?"+mytext,'advertdetail');
		  linkWin.focus();
		});
	});
	function trim(str, chars) {
		return ltrim(rtrim(str, chars), chars);
	}
	 
	function ltrim(str, chars) {
		chars = chars || "\\s";
		return str.replace(new RegExp("^[" + chars + "]+", "g"), "");
	}
	 
	function rtrim(str, chars) {
		chars = chars || "\\s";
		return str.replace(new RegExp("[" + chars + "]+$", "g"), "");
	}
