<!-- //
function IframeDisplayY1(Year,Month,Week,Iframe,nowYear,nowMonth,nowWeek){
	if(Month.selectedIndex < 0){
		a01 = nowMonth - 1;
	}else{
		if(Year.options[Year.selectedIndex].value == nowYear){
			if(parseInt(Month.options[Month.selectedIndex].value) > parseInt(nowMonth)){
				a01 = nowMonth - 1;
			}else{
				a01 = Month.selectedIndex;
			}
		}else{
			a01 = Month.selectedIndex;
		}
	}
	
	
	if(Week.selectedIndex < 0){
		b01 = nowWeek - 1;
	}else{
		if(Year.options[Year.selectedIndex].value==nowYear&&parseInt(Month.options[Month.selectedIndex].value) == parseInt(nowMonth)){
			if(Week.options[Week.selectedIndex].value > nowWeek){
				b01 = nowWeek - 1;
			}else{
				b01 = Week.selectedIndex;
			}
		}else{
			b01 = Week.selectedIndex;
		}
	}
	
	
	
	Month.length = 0;
	if(Year.options[Year.selectedIndex].value < nowYear){
		for(var i = 1 ; i <= 12 ; i++){
			len = Month.length++;
			Month.options[len].value = i;
			Month.options[len].text = i;
		}
	}else{
		for(var i = 1 ; i <= nowMonth ; i++){
			len = Month.length++;
			Month.options[len].value = i;
			Month.options[len].text = i;
		}
		
	}
	Month.selectedIndex = a01;
	
	Week.length = 0;
	if(Year.options[Year.selectedIndex].value<nowYear||(Year.options[Year.selectedIndex].value==nowYear&&parseInt(Month.options[Month.selectedIndex].value) < parseInt(nowMonth))){
		for(var i = 1 ; i <= 5 ; i++){
			len = Week.length++;
			Week.options[len].value = i;
			Week.options[len].text = i;
		}
	}else{
		for(var i = 1 ; i <= nowWeek ; i++){
			len = Week.length++;
			Week.options[len].value = i;
			Week.options[len].text = i;
		}
		
	}
	Week.selectedIndex = b01;
	
	IframeJump1(Iframe, Year, Month, Week);
}

function IframeJump1(Iframe,Year,Month,Week){
	srcURL = Year.options[Year.selectedIndex].value + "/" + Month.options[Month.selectedIndex].value + "/week" + Week.options[Week.selectedIndex].value + "/head.asp";
	srcURL = "/english/weekly/" + srcURL
	//alert(srcURL);
	//Iframe.location = srcURL;
	Iframe.src = srcURL;
}
// -->