var initialreq = new Request.HTML({
		url: '',
		evalScripts : 0,
		evalResponse : 0,
		onSuccess: function(txt){
			$('result').set('text', '');
			
			//Inject the new DOM elements into the results div.
			$('result').adopt(txt);
		},
		onFailure: function(){
			$('result').set('text', 'The request failed.');
		}

});

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

	initialreq.send({url:url});
	
	var printlink = $('print').getChildren('a');
	if (printlink)
		printlink.setProperty('onclick', "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'); return false;");
};