1、style="cursor:hand"
2、screen.availHeight var x=(screen.availWidth-widths)/2;
3、
function move(oSrc, oTar){
for(var i=oSrc.length-1;i>=0 ;i--){
if(oSrc.options[i].selected){
var oOption = document.createElement("option");
oOption.text = oSrc.options[i].text;
oOption.value = oSrc.options[i].value;
oTar.add(oOption);
oSrc.options.remove(i);
}
}
}