// JavaScript Document

function abrirPDF(){ //v3.0
	var fichero

	fichero = document.getElementById("selectPDF").value
	if(fichero!="")
	  window.open(fichero,"","")
}

