////////////////////////////////////////////////////////////////////////////////
//「このコンテンツについて」表示／非表示処理
////////////////////////////////////////////////////////////////////////////////
// showhide
function showHide() {
var disp=document.getElementById('explain');
var arrow=document.getElementById('showhide');

if (disp.style.display == "block") {
	disp.style.display = "none";
	arrow.childNodes[0].nodeValue = "↓";
} else {
	disp.style.display = "block";
	arrow.childNodes[0].nodeValue = "↑";
}
}








////////////////////////////////////////////////////////////////////////////////
//読み込んだ画像をリサイズ処理
////////////////////////////////////////////////////////////////////////////////
function resize(){
var imgs = 0;
var a = 0;
imgs = document.getElementsByTagName('img');
	if(imgs){
		a = imgs.length;
		for(i=0; i<a; i++){
			if(imgs[i].getAttribute("width") > 100){
				imgs[i].setAttribute('width', "150");
				imgs[i].setAttribute('height', "150");
			}
		}
		//a = a-1;
		//imgs[a].setAttribute('width', "36");
		//imgs[a].setAttribute('height', "14");
	}else{
		alert('あなたのブラウザは DOM を未サポートです');
	}
}








////////////////////////////////////////////////////////////////////////////////
//アクセスログ
////////////////////////////////////////////////////////////////////////////////
document.write('<img width="1px" height="1px" style="display:none;" '
	+ 'src="http://www.nottoohot.com/cgi/sketchlog/accesslog.cgi?ref='
	+ escape(document.referrer)
	+ '&add=1">');
