/*begin*/
function DrawImg(imgid,boxWidth,boxHeight){var imgWidth=jQuery("#"+imgid).width();var imgHeight=jQuery("#"+imgid).height();if(imgWidth<boxWidth&&imgHeight<boxHeight);else if(boxWidth/boxHeight>=imgWidth/imgHeight){_w=boxHeight*imgWidth/imgHeight;jQuery("#"+imgid).width(_w);jQuery("#"+imgid).height(boxHeight)}else{_h=boxWidth*imgHeight/imgWidth;jQuery("#"+imgid).width(boxWidth);jQuery("#"+imgid).height(_h);_imgH=jQuery("#"+imgid).height();margin=(boxHeight-_imgH)/2;jQuery("#"+imgid).css("margin-top", margin);jQuery("#"+imgid).css("margin-bottom",margin)}};
/*end*/