//下载文件
function download_File(docId, docName)
{
   	if(document.getElementById("formDownload")==null){
	document.body.insertAdjacentHTML("beforeEnd",'<span style="display:none">'
	              +'<form name="formDownload" action="/myProject/DownloadServlet" method="post">'
						    +'<input type="hidden" name="attachmentId" value="" />'
						    +'<input type="hidden" name="attachmentName" value="" />'
					      +'</form></span>');
			}
	document.getElementById("attachmentId").value = docId;
	document.getElementById("attachmentName").value = docName;
  	document.getElementById("formDownload").submit();
}

//设为首页
function setHome(obj, vrl){
	try{
		obj.style.behavior = 'url(#default#homepage)';
		obj.setHomePage(vrl);
	}catch(ex){
		if(window.netscape){
			try{
			
			}catch(ex){
			
			}
		}
	}
}

//加入收藏夹
function addFavorite(pUrl, pTitle){
	try{
		window.external.addFavorite(pUrl, pTitle);
	}catch(ex){
		try{
			window.sidebar.addPanel(pUrl, pTitle);
		}catch(e){
			alert("加入收藏夹失败，请使用Ctrl+D进行添加。");
		}
	}
}
