// モニタサイズに応じて最大表示

function webstory(){
		var str = "left=0, screenX=0, top=0, screenY=0, scrollbars=1, resizable=1";
		if(window.screen){
			var ah = screen.availHeight;
			var aw = screen.availWidth;
			str += ",height="+ah;
			str += ",width="+aw;
		}

		var tmp = window.open("/webStory/index.html", "WebStory", str);
		tmp.moveTo(0,0);
		tmp.resizeTo(aw,ah);
}