<!-- JavaScript by Damian Joy --><!-- Copyright 2000-2001 Sinclair/Lee Creative --><!-- hide code from older browsers that don't support JavaScriptif ((navigator.appName=="Microsoft Internet Explorer" && 4 <= parseInt(navigator.appVersion)) || (navigator.appName=="Netscape" && 3<= parseInt(navigator.appVersion))) {/* check to see if the user's browser is capable of handling JavaScript. If true, set up the variablesand functions, else do nothing. */  new_browser = "yes"; }  else new_browser = "no";if (new_browser == "yes") {// declare all Image objects only if new_browser = "yes"  pageTitle_main = new Image ();  pageTitle_main.src = "img/title_main.gif";  pageTitle_about = new Image ();  pageTitle_about.src = "img/title_about.gif";  pageTitle_products = new Image ();  pageTitle_products.src = "img/title_products.gif";  pageTitle_resources = new Image ();  pageTitle_resources.src = "img/title_research.gif";  pageTitle_contact = new Image ();  pageTitle_contact.src = "img/title_contact.gif";    pageTitle_feedback = new Image ();  pageTitle_feedback.src = "img/title_feedback.gif";    pageTitle_faq = new Image ();  pageTitle_faq.src = "img/title_faq.gif";}function toggle(toggle, image) {// purpose: To change the state of a desired image  if (new_browser == "yes") {    // change the title graphic    imgName = eval(image + "_" + toggle + ".src");    document[image].src = imgName;    // change the info iFrame    if (toggle == "main") {      info.location.href = toggle + "_content.htm";    } else {      info.location.href = toggle + "/" + toggle + "_content.htm";    } // if  } // if} // highlight	//-->//-->
