
function showPic (whichpic) { 
	if (document.getElementById) { 
		document.getElementById('placeholder').src = whichpic.name; 
		if (whichpic.title) { 
			document.getElementById('pdesc').childNodes[0].nodeValue = whichpic.title; 
		} else { 
			document.getElementById('pdesc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; 
		} 
		return false; 
	} else { 
		return true; 
	} 
}


/////////////////////////////////////

//右クリック禁止

var msg="(C) www.sa-ssy.com";
function NO() {
if (event.button==2||event.button==3) {
alert(msg);
}
}

