
function writeIndexForm() {

document.write('<form name="indexform">');
document.write('<select name="site" size=1>');
document.write('<option value="site_map.htm">Site Map');
document.write('<option value="home.htm">Home');
document.write('<option value="energy.htm">ENERGY');
document.write('<option value="power_plant_sales.htm">&nbsp;&nbsp;Power Plant Sales');
document.write('<option value="consulting.htm">&nbsp;&nbsp;Consulting');
document.write('<option value="oil&gas.htm">OIL & GAS');
document.write('<option value="crude.htm">&nbsp;&nbsp;Crude');
document.write('<option value="refined_crude.htm">&nbsp;&nbsp;Refined Crude');
document.write('<option value="metals.htm">METALS & MORE');
document.write('<option value="scrap.htm">&nbsp;&nbsp;Scrap Metal');
document.write('<option value="steel_billets.htm">&nbsp;&nbsp;Steel Billets');
document.write('<option value="aluminum_alloy.htm">&nbsp;&nbsp;Aluminum Alloy');
document.write('<option value="minerals.htm">&nbsp;&nbsp;Minerals');
document.write('<option value="other_products.htm">&nbsp;&nbsp;Other Products');
document.write('<option value="urea.htm">&nbsp;&nbsp;Urea');
document.write('<option value="coal.htm">&nbsp;&nbsp;Coal');
document.write('<option value="about_CRI.htm">ABOUT CRI');
document.write('<option value="mission.htm">&nbsp;&nbsp;Mission');
document.write('<option value="profile.htm">&nbsp;&nbsp;Profile');
document.write('<option value="management.htm">&nbsp;&nbsp;Management');
document.write('<option value="news.htm">&nbsp;&nbsp;News');
document.write('<option value="legal.htm">&nbsp;&nbsp;Legal');
document.write('<option value="contact.htm">CONTACT');
document.write('<option value="inquiry.htm">Inquiry Form');
document.write('<option value="site_map.htm">SITE MAP');
document.write('</select>&nbsp;');
document.write('<input type=button value="Go!" onClick="javascript:formHandler(this)">&nbsp;');
document.write('</form>');
}

function formHandler(indexform){
var URL = document.indexform.site.options[document.indexform.site.selectedIndex].value;
window.location.href = URL;
}
