var hval="Lenovo";
function ChangeList(list){
var val=list[list.selectedIndex].innerHTML;
var val2=list.value;
document.getElementById("divgl").innerHTML=document.getElementById("div_"+val2).innerHTML;
for(var i=0;i<=24;i++){
var obj=document.getElementById("link"+i);
if(!obj)break;
var hr=obj.href;
var pos=hr.indexOf(hval);
if(pos==-1)continue;
obj.href=hr.substr(0,pos)+val+hr.substr(pos+hval.length,hr.length-pos-hval.length);
}
if('\v'!='v')hval=encodeURIComponent(val);
else hval=val;
}

function Show(img){
var mi=img.id;
mi=mi.substr(4,mi.length-4);
document.getElementById(mi).style.display="block";
document.getElementById(mi).style.top=-document.getElementById(mi).offsetHeight+"px";
}
function Hide(img){
var mi=img.id;
mi=mi.substr(4,mi.length-4);
document.getElementById(mi).style.display="none";
}