<!-- //
function IframeDisplayY2(Year,Month,Iframe,nowYear,nowMonth){
	if(Month.selectedIndex < 0){
		a01 = nowMonth - 1;
	}else{
		if(Year.options[Year.selectedIndex].value == nowYear){
			if(Month.options[Month.selectedIndex].value > nowMonth){
				a01 = nowMonth - 1;
			}else{
				a01 = Month.selectedIndex;
			}
		}else{
			a01 = Month.selectIndex;
		}
	}
	
	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;
	
	
	if(Year.options[Year.selectedIndex].value == 2004){
		Month.length = 0;
		for(var i = 1 ; i <= 1 ; i++){
			len = Month.length++;
			Month.options[len].value = i;
			Month.options[len].text = i;
		}
		//alert(Month.selectedIndex);
		//Month.selectedIndex=0;
	}
	if(Year.options[Year.selectedIndex].value == 2005){
		Month.length = 0;
		for(var i = 10 ; i <= 12 ; i++){
			len = Month.length++;
			Month.options[len].value = i;
			Month.options[len].text = i;
		}
		Month.value=12
		//alert(Month.selectedIndex);
	}

	
	
	IframeJump2(Iframe, Year, Month);
}

function IframeJump2(Iframe,Year,Month){
	srcURL = Year.options[Year.selectedIndex].value + "/newsletter" + Month.options[Month.selectedIndex].value + "/head.asp";
	//alert(srcURL);
	//Iframe.location = srcURL;
	Iframe.src = srcURL;
}
// -->