function openwindow(url,target)
{
window.open(url,target, "scrollbars=yes,width=580,height=670");
}

function openwindow2(url,target)
{
window.open(url,target, "scrollbars=yes,width=580,height=335");
}

function openwindowScr(url,target)
{
window.open(url,target, "scrollbars=yes,width=596,height=635");
}

function imgChange(thumbSrc){
	document.movieImage.src = 'title/' + thumbSrc + '.jpg';
}

function confirmCancel(alertMessage){
	thisForm = confirm(alertMessage);
	if(thisForm){
		document.theForm.submit();
	}
}

//function downloadWarning(warningMessage){
	
//	thisWarn = alert(warningMessage);
//}

window.onload = function() {
	var downloadButton = document.getElementById('downloadButton');
	downloadButton.onclick = function() {
		downloadButton.href = location.href;
		alert("動画を保存するには右クリック→「対象をファイルに保存」を選択してください。\n※ブライザによって保存の名称が異なる場合があります。");
	}
}
