/**
 * Web2PDF Online - A PDF creation Widget for your website - provided by BCL Technologies
 * visit websit http://www.pdfonline.com/web2pdf/
 * To learn more about adding the SavePageAsPDF link/ buton into your own 
 * blog or website, or for all other free PDF services, go to PDFOnline.com.
 */
document.write('<ul><li><a title="Create a PDF of this page" href="javascript:savePageAsPDF()"><span class="arrow">&raquo;</span> <span class="grey">Save page as PDF</span></a></li><li><a title="We value your privacy" href="w3c/privacy.php"><span class="arrow">&raquo;</span> <span class="grey">Privacy policy</span></a></li></ul>');

function savePageAsPDF()
{
	var sUriRequest = "";

	sUriRequest = "author_id=" + authorId;
	sUriRequest += "&page=" + pageOrientation;
	sUriRequest += "&top=" + topMargin;
	sUriRequest += "&bottom=" + bottomMargin;
	sUriRequest += "&left=" + leftMargin;
	sUriRequest += "&right=" + rightMargin;

	var pURL = "http://savepageaspdf.pdfonline.com/pdfonline/pdfonline.asp?cURL=" + escape(document.location.href) + "&" + sUriRequest;
	window.open(pURL, "PDFOnline", "scrollbars=yes,resizable=yes,width=640,height=480,menubar,toolbar,location");
}
