// JavaScript Document
var PDFWindow = null;
function formSelect(mySelect) {
	var myVal = mySelect.options[mySelect.selectedIndex].value;
	if (myVal != "_SELECT")  { // one of the links = selected
		if ( document.getElementById("PDFROOT") ) { //get the location of the PDF files from the rewritten template link
			var myRoot = document.getElementById("PDFROOT").href;
			var myPDF = (myVal.indexOf('http://') > -1) ? myVal : myRoot +'/'+ myVal; //if it's an outside link, don't add the root
				PDFWindow = window.open(myPDF, "PDFwindow");
		}
	}
}