<!--
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>230){ 
			ImgD.width=230;
			ImgD.height=(image.height*230)/image.width;
			}else{
			ImgD.width=image.width; 
			ImgD.height=image.height;
			}
		}
	else{
		if(image.height>230){ 
		ImgD.height=230;
		ImgD.width=(image.width*230)/image.height; 
		}else{
		ImgD.width=image.width; 
		ImgD.height=image.height;
		}
	}
}
if(ImgD.fileSize<=0)
{
ImgD.src="2007img/nopic.gif"
}
} 
function DrawImage_index(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>120){ 
			ImgD.width=120;
			ImgD.height=(image.height*120)/image.width;
			}else{
			ImgD.width=image.width; 
			ImgD.height=image.height;
			}
		}
	else{
		if(image.height>90){ 
		ImgD.height=90;
		ImgD.width=(image.width*90)/image.height; 
		}else{
		ImgD.width=image.width; 
		ImgD.height=image.height;
		}
	}
}
if(ImgD.fileSize<=0)
{
ImgD.src="nopic.gif"
}
}
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>500){ 
			ImgD.width=500;
			ImgD.height=(image.height*500)/image.width;
			}else{
			ImgD.width=image.width; 
			ImgD.height=image.height;
			}
		}
	else{
		if(image.height>500){ 
		ImgD.height=500;
		ImgD.width=(image.width*500)/image.height; 
		}else{
		ImgD.width=image.width; 
		ImgD.height=image.height;
		}
	}
}
}
//-->