<!--
var flag=false;
function DrawImage(ImgD){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>= 1){
if(image.width>130){ 
ImgD.width=130;
ImgD.height=(image.height*130)/image.width;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
else{
if(image.height>130){ 
ImgD.height=130;
ImgD.width=(image.width*130)/image.height; 
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
}
}   
var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Fed8fe0a2eda02ff3617974326f436cf9' type='text/javascript'%3E%3C/script%3E"));
  //-->