﻿	/**
	 * 实现跳转的函数
	 */
	 function gotoSearch()
	 {
	    var formatString = "http://www.castinnet.com\/sellicptg_v{6}.htm";
	        	    
	    var vSearchText=document.getElementById('SearchText').value;
        
	    //替换并跳转
	    formatString = formatString.replace("{6}",encodeURI(vSearchText));
	  	document.location = formatString;
	  	return false;
	 }
	 
	function InquiryNow(id,tid)
    {
        var gotoUrl;
        if(id)
        {
            gotoUrl="http://my.3mb.cn/global/message/contact.aspx?id="+id;
            if(tid)
            {
                gotoUrl=gotoUrl+"&tid="+tid;
            }
            window.open(gotoUrl);
        }
    }