<!--
function showimg(ImgD){
var image=new Image();
image.src=ImgD.src;
ImgD.onload="";
if(image.width>0 && image.height>0){
	flag=true;
	if(image.width/image.height>=1){
		if(image.width>120){ 
			ImgD.width=120;
		}else{
			ImgD.width=image.width; 
			ImgD.height=image.height;
		}
	}
	else{
		if(image.height>120){ 
			ImgD.height=120;
		}else{
			ImgD.width=image.width; 
			ImgD.height=image.height;
		}
	}
}
ImgD.style.display="";
image = null;
delete image;
ImgD.style.backgroundImage="none";
return false;
}
//-----------------------------------------------------------------------------------



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>270){ 
ImgD.width=270;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
else{
if(image.height>270){ 
ImgD.height=270;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
}
ImgD.style.display="";

}
//-----------------------------------------------------------------------






//-->