////////////////////////////////////////////////////////////
//
//ファイル名:   post.js
//機能		:	投稿機能管理
//依存		:	-
//バージョン:　 2.0.0.1
//更新日時	:　 2006.08.01
//更新者	:	kawame
//
//////////////////////////////////////////////////////////////


/*	属性入力画面呼び出し */
function setItemAttribute()
{
	var w = (subwin_postinput.w && subwin_postinput.w!=-1)? subwin_postinput.w:300;
	var h = (subwin_postinput.h && subwin_postinput.h!=-1)? subwin_postinput.h:300;
	//属性編集画面
	if(document.all)
	{
		window.open("SubWin/Post.aspx","post"," width ="+w+",height = "+h+",scrollbars=1,status=0,fullscreen=0,resizable=1,toolbar=0,location=0,directories=0,menubar=0,left = 10,top = 10");
	}
	else
	{
		window.open("SubWin/Post.aspx","post"," width ="+w+",height = "+h+",scrollbars=1,status=0,fullscreen=0,resizable=1,toolbar=0,directories=0,menubar=0,left = 10,top = 10");
	}
}



	function exe()
	{
		document.getElementById("button").disabled = true;
		document.getElementById("bbb").style.display="block";
		
		
	}
	
	function test(value)
	{
		if(value == "1")
		{
			document.getElementById("aaa").style.display="block";
			document.getElementById("button").disabled = false;
			document.getElementById("bbb").style.display="none";
		}
	}
	
	
