﻿var _form;

function showCredit(text)
{
	document.getElementById("credit").innerHTML = text;
}

function showCommentBox(form)
{
	window.open("/comment.html", "comment", "toolbar=no, location=no, status=no, menubar=no, scrollbar=no, width=320, height=240");
	_form = form;
	setTimeout(struct, 10);
}

function struct()
{
	var commentbox = window.open("", "comment");
	var inputform = commentbox.document.getElementById("inputform");
	if (inputform == null)
	{
		setTimeout(struct, 10);
		return;
	}
	inputform.innerHTML = _form;
	inputform.innerHTML += "<br /><input type='button' onclick='getComment()' value='書き込み' />";
}

function getComment()
{
	var player = window.opener.document.getElementById("HimacologyPlayer");
	var request = new Object();
	for (i = 0; i < document.forms[0].elements.length; i++)
	{
		request[document.forms[0].elements[i].id] = document.forms[0].elements[i].value;
	}
	player.setComment(request);
	window.close();
}