function CK2_MenuItemRedirectPage(){
	var myChoice2, mySelection2;
	myChoice2 = document.myForm2.myMenu2.selectedIndex;
	mySelection2 = document.myForm2.myMenu2.options[myChoice2].value;
	window.open(mySelection2,"contents");
}

function wopen(NewPage,x,y) {
	window.open(NewPage,"Contents","width="+x+",height="+y+",toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes");
}

function i_here(name) {
	var i,name;
	for(i=0;i<8;i++) {
		if(document.myMenu2[i].txt == name) {
			document.myMenu2.selectdIndex = i;
			break;
		}
	}
}

//---------------------------------------------------------//
// プルダウンメニュー //
//---------------------------------------------------------//

function pull_down_menu() {
	document.write('<FORM METHOD="post" ACTION="" NAME="myForm2" style="margin:0">');
	document.write('<SELECT name="myMenu2" onChange="CK2_MenuItemRedirectPage()">');
	document.write('<OPTION>Index of Purchasing of Materials</OPTION>');
	document.write('<OPTION>-----------------------------------</OPTION>');
	document.write('<OPTION VALUE="contents.html">Purchasing of Materials</OPTION>');
	document.write('<OPTION VALUE="contents1.html">Purchasing Policy</OPTION>');
	document.write('<OPTION VALUE="contents6.html">Green Procurement</OPTION>');
	document.write('<OPTION VALUE="contents2.html">Purchasing Procedure</OPTION>');
	document.write('<OPTION VALUE="contents3.html">Global Procurement Network</OPTION>');
	document.write('<OPTION VALUE="contents.html#koukaihikiai">Expanding Our Supplier Base</OPTION>');
	document.write('<OPTION VALUE="contents15.html">Registration Form</OPTION>');
	document.write('</SELECT>');
	document.write('</FORM>');
}

