/**
 * 按机型下载
 **/
function download(objid){
	var key = document.getElementById(objid).value;
	if("0" !== key){
		var url = "/download/attachment.jsp?type=1&id=" + key;
		if(url !== ""){
			window.open(url,"_self");
		}
	}
}

/**
 * 按系统下载
 **/
function downloadBySystem(objid){
	var key = document.getElementById(objid).value;
	if("0" !== key){
		var url = "/download/attachment.jsp?type=3&id=" + key;
		if(url !== ""){
			window.open(url,"_self");
		}
	}
}