//选择文件
function selectFile(oInput){
	var strTem='';
	try{
		var objs=document.getElementsByName(oInput.name);
		if (objs.length>1){
			for (var i=0;i<objs.length;i++){
				if (objs[i]==oInput){
					strTem='&objInputIndex=' + i.toString();
				}
			}
		}
	}catch(e){}
	window.open('../Upload/Upload.asp?objInput=' + oInput.name + strTem + '&SelFile=' + oInput.value, 'Upload', 'scroll=auto,resizable=yes,width=650,height=450');
}
//选择Radio的值
function selRadio(objs,sValue){
	for (var i=0;i<objs.length;i++){
		if(objs[i].value==sValue) {
			objs[i].checked=true;
			break;
		}
	}
}
