function imgView(aaa,w,h){
	document.getElementById("imgWin_diary_illusts").style.display="block";
	var str ="";
	str = str+'<div id="dip_diary_illusts"><a href="javascript:void(0);" onclick="imgDel()"><img src="close_red.gif" style="width:16px; height:16px;" border="0"></a>';
	str = str+'<br>';
	str = str+'<img src="'+aaa+'" width="'+w+'" height="'+h+'" style="border:1px solid #999999;"><br>';
	str = str+'<p align="center" style="margin:0px; margin-top:5px; font-size:80%;">'+aaa+'</p></div>';
	outputLAYER("imgWin_diary_illusts",str);
}


function imgDel(){
/*
	document.getElementById("imgWin_diary_illusts").style.display="none";
*/
	none="";
	outputLAYER("imgWin_diary_illusts",none);
}
	
function outputLAYER(layName,html){
	if(document.getElementById){        //N6,Moz,IE5,IE6—p
	  document.getElementById(layName).innerHTML=html
	
	} else if(document.all){                       //IE4—p
	  document.all(layName).innerHTML=html
	
	} else if(document.layers) {                   //NN4—p
	   with(document.layers[layName].document){
	     open()
	     write(html)
	     close()
	  }
	}
}

function subWindow(ON,OFF){
	eval(ON).style.display='block';
	eval(OFF).style.display='none';
}

function closeMenu(OBJ){
	eval(OBJ).style.display='none';
}