function confirm_entry(whichURL) { var loc = whichURL; input_box=confirm('The link you have selected will take you away from this site to one that is not owned or controlled by Genentech, Inc. Genentech, Inc. makes no representation as to the accuracy of the information contained on sites we do not own or control. Genentech, Inc. does not recommend and does not endorse the content on any third-party websites. Your use of third-party websites is at your own risk and subject to the terms and conditions of use for such sites.'); if (input_box==true) { // Output when OK is clicked window.open(loc,'tarceva') } else { // Output when Cancel is clicked } } function confirm_entry_spanish(whichURL) { var loc = whichURL; input_box=confirm('El enlace que ha seleccionado lo dirigirá desde este sitio a otro que no es propiedad de Genentech, Inc. ni está controlado por ésta. Genentech, Inc. no emite ninguna declaración con respecto a la precisión de la información incluida en sitios que no posee ni controla. Genentech, Inc. no recomienda ni avala el contenido de ningún sitio web de terceros. La utilización de sitios web de terceros corre por su cuenta y riesgo, y está sujeta a los términos y a las condiciones de uso de dichos sitios.'); if (input_box==true) { // Output when OK is clicked window.open(loc,'tarceva') } else { // Output when Cancel is clicked } } function confirm_hcp(hcpURL) { var loc = hcpURL; input_box=confirm('The information contained in this section of the site is intended for U.S. healthcare professionals only. Click OK if you are a healthcare professional.'); if (input_box==true) { // Output when OK is clicked document.location=loc; } else { // Output when Cancel is clicked } } function confirm_hcp_spanish(hcpURL) { var loc = hcpURL; input_box=confirm('La información provista en esta sección del sitio se encuentra en inglés y está dirigida a profesionales de atención médica de los Estados Unidos solamente. Haga clic en OK si es un profesional de atención médica.'); if (input_box==true) { // Output when OK is clicked document.location=loc; } else { // Output when Cancel is clicked } } function openPI(piURL) { var loc = piURL window.open(loc,'pi') }