<!--
function next_pnews(pnews_no){
	document.getElementById("pnews_1").style.display = "none";
	document.getElementById("pnews_2").style.display = "none";
	document.getElementById("pnews_3").style.display = "none";
	document.getElementById("pnews_" + pnews_no).style.display = "block";		
}
	

	var showIdx = 1;

	function showcase(n)
	{
		for(i=1; i<=2; i++){
			document.getElementById("showcase_"+ i).style.display = "none";
		}
	
		document.getElementById('showcase_'+n).style.display = "block";
	
		if(showIdx == 2)
			showIdx = 1;
		else if(showIdx == 1) 
			showIdx = 2;
		//else if(showIdx == 2)
			//showIdx = 3;
	
		setTimeout("showcase("+showIdx+")",3000);
	}
	
function mout(obj) { 
obj.style.backgroundColor="#ffffff";
window.status="";
}
function mover(obj,data) { 
obj.style.backgroundColor="#ccccff";
window.status=data;
}
//-->