





//请添加注释
function deleteConfirm(url)
{
	if(confirm("Delete operation can't be restored! Are you sure to delete it?")){
		location.href=url;
	}
}
function show(which){
	var links=which.options[which.selectedIndex].value
	if(links!=""){
		location.href=links
	}
}
