function showimgs()
{
	var ccimgs = document.getElementById("content").getElementsByTagName("IMG");
	for (i=0;i<ccimgs.length;i++)
	{
		if (ccimgs[i].scrollWidth > 600)
		{
		ccimgs[i].width = "600";
		ccimgs[i].onclick= show;
		ccimgs[i].style.cursor="pointer";
		ccimgs[i].alt="µã»÷·Å´ó";
		}
	}
}
function show(){
window.open("/pic.html?"+this.src);
}
window.onload = new Function("showimgs();");