function setHref(id){
	var obj=document.all[id].childNodes[0];
	for(var i=0;i<obj.rows.length;i++){
		for(var j=0;j<obj.rows[i].cells.length;j++){
			var h=obj.rows[i].cells[j].childNodes[0];
			var title=h.title;
			var src=h.childNodes[0].src;
			if(i==0&&j==0){
				var img=document.all["myimage"];
				img.insertAdjacentHTML("beforeBegin","<a href=\"#\">");
				img.insertAdjacentHTML("afterEnd","</a>");
				setSrc(src,title);
			}
			h.href="javascript:setSrc('"+src+"','"+title+"')";
			
		}
	}
}
function setSrc(src,title){
	var img=document.all["myimage"];
	img.parentElement.align="center";
	var image=new Image();
    image.src=src;
	if(image.width/image.height>429/306){
		img.width=429;
		img.height=image.height*429/image.width;
	}else{
		img.height=306;
		img.width=image.width*306/image.height;
	}
	img.src=src;
	document.all["mytitle"].innerText=title;
}
