
<!--

function MM_openBrWindow(theURL,winName,features) { //v1.2
  win = window.open(theURL,winName,features);
  if (parseInt(navigator.appVersion) >= 4)
  {win.focus();}
}
                function preLoad() {
                        onImages = new Array();
                        for (field in loadList){
                                onImages[field] = new Image();
                                onImages[field].src = imageDir + loadList[field];
                        }
                        action = "on";
                }
                function changeImage(mode){
                        if (action == "on") {
                                document.images[mode].src = imageDir + "lmn_" + mode + "b.gif";
                        }
                }
                function retImage(mode){
                        if (action == "on") {
                                document.images[mode].src = imageDir + "lmn_" + mode + ".gif";
                        }
                }

function checkRadio(){
	var chk = 0;
	with(document.ct){
		for(i=0; i<attribute.length; i++){
			if (attribute[i].checked) {
				chk++;
			}
		}
		for(i=0; i<firsttime.length; i++){
			if (firsttime[i].checked) {
				chk++;
			}
		}
	}
	if (chk >= 2){
		return true;
	}else{
		alert("選択項目をご選択ください。");
		return false;
	}

}

//-->
