/* ====================================================================
SELECT DROP DOWN MENUS
-------------------------------------------------------------------- */

function openPDF(myURL, popupWidth, popupHeight, popupName){
	// setup a controlled popup window
	// calculate the left edge (x position) of the popup window; if we can't get the screen width then make it 20 pixels (after the : )
	var popupX = (screen.availWidth)? ((screen.availWidth - popupWidth) / 2): 20;
	// calculate the top edge (y position) of the popup window; if we can't get the screen heigth then make it 20 pixels
	var popupY = (screen.availHeight)? ((screen.availHeight - popupHeight) / 3):20;
	var details = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+popupWidth+',height='+popupHeight+',top='+popupY+',left='+popupX;
	mypopup = window.open(myURL,popupName,details);
	mypopup.focus();
}

function openPDFForm(form){
	var myURL = form.fID.selectedIndex;
	var myURL = form.fID.options[myURL].value;
	//alert(myURL);
	openPDF(myURL, 500, 600, "fReport");
}