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

//function dojump(inValue) {
	
//	if (inValue)
//		document.location.href = inValue;
//}


function printNewslinks() {
document.write("<select size=1 name=D1>")
document.write("<option value=>Current Newsletter</option>")
document.write("<option value=></option>")
document.write("<option value=></option>")
document.write("<option value=></option>")

document.write("</select><input type=button value=Go! onClick=javascript:formHandler()>")

}

function formHandler2(form2){
var URL = document.form2.D2.options[document.form2.D2.selectedIndex].value;
window.location.href = URL;
}



function printDaleheadNewslinks() {
document.write("<select size=1 name=D2>")

document.write("<option value=spring2004.pdf>Spring 2004</option>")
document.write("<option value=winter2003.pdf>Winter 2003</option>")
document.write("<option value=autumn2003.pdf>Autumn 2003</option>")
document.write("<option value=summer2003.pdf>Summer 2003</option>")

document.write("<option value=spring2003.pdf>Spring 2003</option>")
document.write("<option value=jan2003.pdf>January 2003</option>")
document.write("</select><input type=button value=Go! onClick=javascript:formHandler2()>")

}
