if(navigator.appName.indexOf('Microsoft',0) > -1  ){
	window.attachEvent('onload',startIE);
}else{
	document.addEventListener('load',others);
}

function startIE(){

	document.getElementById('send_action').attachEvent('onclick',sender);
	
}

function others(){
	document.getElementById('send_action').addEventListener('click',sender);

}

function sender(){
	if(document.bgm.music.value.length == 0){
		window.alert('曲名が入力されていません');
		document.bgm.music.focus();
	}else{
		if(document.bgm.artist.value.length == 0){
		window.alert('アーティスト名が入力されていません');
		}else if(document.bgm.scene.value.length == 0){
		window.alert('場面が入力されていません');
		}else{
		document.bgm.submit();
		}
	}

}
