/**
 * @author {tiger}
 */
function _clickInput(id, str){
    var o = document.getElementById(id);
    o.value = str;
    o.onclick = function(){
        this.focus();
        this.style.color = "#333";
        if (this.value == str) {
            this.value = "";
        }
    };
    o.onblur = function(){
        if (this.value == "") {
            this.value = str;
            this.style.color = "";
        }
    };
}

function _searchType(form){
    var f = document.getElementById(form);
	var sub = f.getElementsByTagName('input')[1],q=f.getElementsByTagName('input')[0];
	sub.onclick = function(){
		if( !q.value || q.value==''|| q.value == 'ÇëÊäÈëËÑË÷ÄÚÈÝ'){ return;}
		f.submit();
	}
}

