window.onload = function(){
    var frm=document.fm01;
	document.getElementById("Accept").onclick = function(){
		document.getElementById("nextButton").disabled = false;
	}

	document.getElementById("NG").onclick = function(){
		document.getElementById("nextButton").disabled = true;
		window.alert('内容に同意していただかないと応募することができません。');
	}
	
	var img, but = document.getElementById("nextButton");
	if (but) {
		img = but.getElementsByTagName('img')[0] || null;
		if (img) {
			img.orig = img.src;
			but.onmouseover = function() {
				img.src = img.orig.replace(".png", "_on.png");
			};
			but.onmouseout = function() {
				img.src = img.orig;
			};			
		}
	}
}


function jump(){
    var flag = 0;
    for(i=0; i<document.fm01.url.length; i++){
        if(document.fm01.url[i].checked){
            flag = 1;
            window.open(document.fm01.url[i].value);
        }
    }
}

