function SozaiLink(sentaku){
	newurl = sentaku.options[sentaku.selectedIndex].value;

	if(newurl != 'ng'){
		window.open(newurl, '_top');
	}

}

function IROsentaku(Biro,Tiro){
	
	if(document.getElementById){
		if( document.getElementById )document.getElementById("btable").style.backgroundColor = Biro;
		if( document.getElementById )document.getElementById("btable").style.color = Tiro;
	}
	else if(document.all){
		document.all("btable").style.background = Biro;
		document.all("btable").style.color = Tiro;
	}
}