function SearchSimpGCO1()
{
    var txtKey = document.getElementById("txtKey");
    var key =  trim(txtKey.value) ;
    
    if ( key == "" )
    {
	ShowMsgo.show('Search infomation','Keyword can not be null',2);
        txtKey.focus ();
    }
    else
    {
	url = "http://chinaoutlook.scmp.com/gcoog/show_index_gb.php?action=search&searchby=" + key;
	window.frames[0].location=url;

//        window.location = "SearchResult.aspx?Key=" + key ;
    }
}

function SearchTradGCO1()
{
    var txtKey = document.getElementById("txtKey");
    var key =  trim(txtKey.value) ;
	alert(key);    

    if ( key == "" )
    {
	ShowMsgo.show('Search infomation','Keyword can not be null',2);
        txtKey.focus ();
    }
    else
    {
	url = "http://chinaoutlook.scmp.com/gcoog/show_index_big5.php?action=search&searchby=" + key;
	window.frames[0].location=url;

//        window.location = "SearchResult.aspx?Key=" + key ;
    }
}

function SearchTradGCO()
{
//	alert(document.getElementById("txtKey").value);
	var txtKey = document.getElementById("txtKey");
	var key =  trim(txtKey.value) ;

	url = "http://chinaoutlook.scmp.com/gcoog/show_index_big5.php?action=search&searchby=" + key;

//	alert("url" + url);
//	window.frames[0].location=url;

	url = "GCO_Tradchi_Search.aspx?key=" + key;
	window.location = url;
}

function SearchSimpGCO()
{
//	alert(document.getElementById("txtKey").value);
	var txtKey = document.getElementById("txtKey");
	var key =  trim(txtKey.value) ;

	url = "http://chinaoutlook.scmp.com/gcoog/show_index_gb.php?action=search&searchby=" + key;

//	alert("url" + url);
//	window.frames[0].location=url;

	url = "GCO_Simpchi_Search.aspx?key=" + key;
	window.location = url;
}