// JavaScript Document
var thetext1=new Array()
thetext1[0]="Download Brochure"
thetext1[1]="Nu-cast Brochure"
function displaydesc(which, descriptionarray, container){
if (document.getElementById)
document.getElementById(container).innerHTML=descriptionarray[which.selectedIndex]
}
function jumptolink(what){
var selectedopt=what.options[what.selectedIndex]
if (document.getElementById && selectedopt.getAttribute("target")=="newwin")
window.open(selectedopt.value)
else
window.location=selectedopt.value
}
displaydesc(document.form1.select1, thetext1, 'textcontainer1')

var thetext2=new Array()
thetext2[0]="View Past Press Releases"
thetext2[1]="Aluminum Investment Castings Sets Casting Size Record"
thetext2[2]="Nu-Cast, Inc. Marks Milestone in Continuous Improvement Program"
function displaydesc(which, descriptionarray, container){
if (document.getElementById)
document.getElementById(container).innerHTML=descriptionarray[which.selectedIndex]
}
function jumptolink(what){
var selectedopt=what.options[what.selectedIndex]
if (document.getElementById && selectedopt.getAttribute("target")=="newwin")
window.open(selectedopt.value)
else
window.location=selectedopt.value
}
displaydesc(document.form2.select2, thetext2, 'textcontainer2')