function showContent(id, pid, language){	
	url = 'index.php?id=' + id + '&pid=' + pid + '&type=44&L=' + language;

	jQuery.get(url, function(data) {
	  jQuery('#result').html('');
	  //Inject the new DOM elements into the results div.
	  jQuery('#result').html(data);
	});
		
	var printlink = jQuery('#print a');
	if (printlink){
		printlink.click(function(){
		  window.open("index.php?id=" + id + "&pid=" + pid + "&type=98&L=" + language,'print','resizable=yes,toolbar=no,scrollbars=yes,menubar=yes,width=680,height=500');
		 });
	}
};
