printDocument(String docUrl,Object options); 
  docUrl:  必须为doc文件的相对地址,相对于当前打印页。 
  options:打印选项,每种格式,有不同的属性列表
 
 一、pdf 文件打印,不必安装任何 pdf软件
printDocument("a.pdf",  {
	printer : "Lenovo Laser Jet 1000", // 指定打印机,不指定打印机,则使用默认打印机
	duplex : true, // 是否双面打印 true:双面/单面
	portrait : true, // 是否纵向打印,true:纵向/false:横向
	copies : 1,// 打印份数
	from : 1, // 起始打印页
	to : 10
		// 结束打印页
	})