//跳转页面,list页面公用
function Jumping(){	
	document.CIDN.submit();
	return;
}
//上下翻页,list页面公用
function gotoPage(pagenum){
document.CIDN.jumpPage.value=pagenum;
document.CIDN.submit();
return;
}

//查询按钮,list页面公用
function doSubmitGoSerch(){
	
document.CIDN.jumpPage.value="0";
//alert("==----==="+document.CIDN.jumpPage.value);
document.CIDN.submit();
return;
}

//关闭按钮--通用
function doSubmitClose()
{ 
  window.opener   =   null   
  window.close();   
  
}

//文件上传按钮
function doSubmitDoUpload()
{ 
 with(document.CIDN){		
	        	action = "/BGWEB/Upload?type="+document.CIDN.type.value;				
	        	submit();				
				}
  
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

