﻿

function ClearWord()
{
    if(document.getElementById("search_content").value=="Search..")
    {
        window.document.getElementById("search_content").setAttribute("value","");
    }
    else
    {
         document.getElementById("search_content").select();
    }
    
}

function UTF8UrlEncode(input)
{
	var output = "";
	var currentChar = '';
	
	for(var counter = 0; counter < input.length; counter++) 
	{
		currentChar = input.charCodeAt(counter);
		
		if((48 <= currentChar) && (currentChar <= 57))
			output = output + input.charAt(counter);
		else if((65 <= currentChar) && (currentChar <= 90))
			output = output + input.charAt(counter);
		else if((97 <= currentChar) && (currentChar <= 122))
			output = output + input.charAt(counter);
		else
			output =  output + UTF8UrlEncodeChar(currentChar); 
	}
	return output;
}

function UTF8UrlEncodeChar(input)
{
	if(input <= 0x7F) return "%" + input.toString(16);

	var leadByte = 0xFF80; var hexString = ""; var leadByteSpace = 5;
	while(input > (Math.pow(2, leadByteSpace + 1) - 1))
	{
		hexString = "%" + ((input & 0x3F) | 0x80).toString(16) + hexString;
		leadByte = (leadByte >> 1);
		leadByteSpace--;
		input = input >> 6;
	} 
	return ("%" + (input | (leadByte & 0xFF)).toString(16) + hexString).toUpperCase();

}
function indexsearch()
{   
   // alert('1');
    var o =document.getElementsByName("RadioGroup1");
    var len=o.length;
  // alert(len);
    for(var i=0;i<len;i++)
    {
        if(o[i].checked==true)
        {   
           // alert(i);   
            if(o[i].value=="1")
            {  
                //alert("商情");              
                window.location.href='http://s.01w.com/s/s_sproject/'+escape(document.getElementById("search_content").value);
                
             }
            if(o[i].value=="2")
                window.location.href='http://s.01w.com/s/s_prolist/'+escape(document.getElementById("search_content").value);
            if(o[i].value=="3")
                window.location.href='http://s.01w.com/s/s_comlist/'+escape(document.getElementById("search_content").value);
            if(o[i].value=="4")
                window.location.href='http://s.01w.com/s/s_maglist/'+escape(document.getElementById("search_content").value);
            if(o[i].value=="5")
                window.location.href='http://s.01w.com/s/s_list/'+escape(document.getElementById("search_content").value);
            if(o[i].value=="6")
                window.location.href='http://s.01w.com/s/s_sproject/'+escape(document.getElementById("search_content").value);
        }
        
    }
    
}
function goto(type,key)
{
    if(type=="1")
    {  
                          
                window.location.href='http://s.01w.com/s/s_sproject/'+escape(document.getElementById("search_content").value);
                
    }
    if(type=="2")
          window.location.href='http://s.01w.com/s/s_prolist/'+escape(document.getElementById("search_content").value);
     if(type=="3")
                window.location.href='http://s.01w.com/s/s_comlist/'+escape(document.getElementById("search_content").value);
      if(type=="4")
                window.location.href='http://s.01w.com/s/s_maglist/'+escape(document.getElementById("search_content").value);
       if(type=="5")
                window.location.href='http://s.01w.com/s/s_list/'+escape(document.getElementById("search_content").value);
       if(type=="6")
                window.location.href='http://s.01w.com/s/s_sproject/'+escape(document.getElementById("search_content").value);
}

function gopro()
{
   window.open('http://s.01w.com/s/s_prolist.html?q='+escape(document.getElementById("search_content").value));       
}