<!--
function showimg(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>210){ 
ImgD.width=210;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
else{
if(image.height>210){ 
ImgD.height=210;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
}
ImgD.style.display="";
}
//-----------------------------------------------------------------------------------



function bigimg(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>340){ 
ImgD.width=340;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
else{
if(image.height>340){ 
ImgD.height=340;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
}
ImgD.style.display="";

}
//-----------------------------------------------------------------------






//-->document.write("");

