function iPaper(docId, access_key, height, width, htmlElementId)
{
	var ipaper = scribd.Document.getDoc(docId, access_key);
	ipaper.addParam('height', height);
	ipaper.addParam('width', width);
	ipaper.write(htmlElementId);
}