/**
 * 動画ウインドウ表示
 */
function openView(p) {
	window.open(
			'http://digitalart.jp/view/?p=' + p, '',
			'width=350, height=300, location=0, menubar=0, toolbar=0, scrollbars=0, resizable=0');
}

/**
 * 紙芝居ウインドウ表示
 */
function openView2(p, l) {
	window.open(
			'http://digitalart.jp/view/index2.php?p=' + p + '&l=' + l, '',
			'width=660, height=590, location=0, menubar=0, toolbar=0, scrollbars=0, resizable=0');
}

/**
 * 投票ウインドウ表示
 * @param id
 */
function openVote(id) {
	window.open(
			'http://digitalart.jp/vote/?i=' + id, '',
			'width=350, height=300, location=0, menubar=0, toolbar=0, scrollbars=0, resizable=0');
}
