﻿// JScript 文件
 var LoadingImg="<img src=\"images/loading.gif\" alt=\"\" style=\"margin-right:5px;\" />";
function Show_Info(num)
	{
		if (isNaN(num)) return false;
		AllObjBlur();
		showsubmitframediv("专线报价",LoadingImg+"正在读取详细信息...");
        var xmlhttpobj=new xmlhttp;
        var xmlobj;
	    xmlhttpobj.go("?act=getinfo&ID="+num,true);
	    var sendcontent="";
	    xmlhttpobj.content=sendcontent;
	    xmlhttpobj.send();
	    xmlhttpobj.callback=function(xmlobj)
	    {
		    var retxt=unescape(xmlobj.responseText);
		    xmlobj=null;
		    xmlhttpobj=null;
		    if (retxt.substr(0,2)!="ok")
		    {
				$("showsubmitframedivobjinner").innerHTML=retxt;
				setTimeout("showsubmitframedivend()", 2000);
				return false;
		    }
		    retxt=retxt.substr(2,retxt.length-2);
		    showsubmitframedivend();
		    showsubmitframediv("专线报价信息","",true,500,420);
			$("showsubmitframedivobjinner").innerHTML=retxt;
			return false;
	    }
	}

