

//var ajaxrapport = new Array();

function exportPDF(title) {
	var html = document.getElementById('content').innerHTML;
	var myRequest = new Request({url: '/felles/ajax_pdf.php', 
		onSuccess: function(response){
			window.location.href=response;
			//window.open(response,"ATL_PDF_Dokument");
		}, 
		onFailure: function(feil) {
			alert("Feil"+feil);
	}})
	.send("html="+escape(html)+"&title="+title);

}



