// JavaScript Common Library

function pdfIt(type, id) {
	if(type == "page"){
		var url = "http://bp2.webhat.it/_include/clickutility/html2pdf.php?idpage="+id;
	}else if(type == "news"){
		var url = "http://bp2.webhat.it/_include/clickutility/html2pdf.php?idnews="+id;
	}
	
	
	newwindow=window.open(url,'name','height=550,width=700,resizable=yes');
	if (window.focus) {newwindow.focus();}
}

