function changeURL(obj){
if ($(obj).attr("name")!="") {
try
{
var oShell = new ActiveXObject("WScript.Shell");
oShell.Run('"c:/Program Files/Internet Explorer/IEXPLORE.EXE" '+webUrl,1,true);
}
catch(e)
{
alert("链接地址不存在,请确认。");
}
}
}