<!-- hide script from old browsers

//expands list of directors when user clicks on Directors link
function changeDirectors()
{
var x=document.getElementById('smttable').rows
var y=x[3].cells
y[0].innerHTML="\
<span class=\"style6\"><div align=\"left\" id=\"x\" onMouseOut=\"changeColor('white','x')\" onMouseOver=\"changeColor('#00AAFF','x')\" onclick=\"revertDirectors()\"><span class=\"txtdec\">Directors</span><img src=\"../Images/triangle_up.jpg\"></div>\
<div align=\"left\"><a class=\"style8\" href=\"../about_mhatamian.php\"> Mehdi Hatamian </a></div>\
<div align=\"left\"><a class=\"style8\" href=\"../about_lglass.php\"> Lawrence Glass </a></div>\
<div align=\"left\"><a class=\"style8\" href=\"../about_mghalebi.php\"> Mehrtosh Ghalebi </a></div>\
<div align=\"left\"><a class=\"style8\" href=\"../about_fyoung.php\"> Frank Young </a></div>\
<div align=\"left\"><a class=\"style8\" href=\"../about_hghanbari.php\"> Hossein Ghanbari </a></div></span>\
<div align=\"left\"><a class=\"style8\" href=\"../management.php\"> James Shen </a></div></span>\
"
}
//collapses list of directors when user clicks on Directors link
function revertDirectors()
{
var x=document.getElementById('smttable').rows
var y=x[3].cells
y[0].innerHTML="<span class=\"style6\"><div align=\"left\" id=\"x\" onMouseOut=\"changeColor('white','x')\" onMouseOver=\"changeColor('#00AAFF','x')\" onclick=\"changeDirectors()\"><span>Directors</span><img src=\"../Images/triangle_down.jpg\"></div></span>"
}
//expands list of advisory board when user clicks on Advisory Board link
function changeAdvisors()
{
var x=document.getElementById('smttable').rows
var y=x[4].cells
y[0].innerHTML="\
<span class=\"style6\"><div align=\"left\" id=\"y\" onMouseOut=\"changeColor('white','y')\" onMouseOver=\"changeColor('#00AAFF','y')\" onclick=\"revertAdvisors()\"><span class=\"txtdec\">Advisory Board</span><img src=\"../Images/triangle_up.jpg\"></div></span>\
<div align=\"left\"><a class=\"style8\" href=\"../about_hdelavarian.php\"> Hooshang Delavarian </a></div>\
<div align=\"left\"><a class=\"style8\" href=\"../about_cbrauer.php\"> Christine Brauer </a></div></span>\
"
}
//collapses list of advisory board when user clicks on Advisor Board link
function revertAdvisors()
{
var x=document.getElementById('smttable').rows
var y=x[4].cells
y[0].innerHTML="<span class=\"style6\"><div align=\"left\" id=\"y\" onMouseOut=\"changeColor('white','y')\" onMouseOver=\"changeColor('#00AAFF','y')\" onclick=\"changeAdvisors()\"><span>Advisory Board</span><img src=\"../Images/triangle_down.jpg\"></div></span>"
}

function changeProducts()
{
var x=document.getElementById('smttable').rows
var y=x[1].cells
y[0].innerHTML="\
<span class=\"style6\"><div align=\"left\" id=\"z\" onMouseOut=\"changeColor('white','z')\" onMouseOver=\"changeColor('#00AAFF','z')\" onclick=\"revertProducts()\"><span class=\"txtdec\">Our Products</span><img src=\"../Images/triangle_up.jpg\"></div>\
<span class=\"space\"><br></span>\
<div align=\"left\"><a class=\"style6\" href=\"product_main.php\"> PRODUCT OVERVIEW </a></div>\
<div align=\"left\"><a class=\"style6\" href=\"product_RFID.php\"> RFID OVERVIEW </a></div><hr>\
\
<div align=\"left\"><span class=\"style8\"><b> Medical Information Management </b></span></div>\
<div align=\"left\"><span class=\"style8\"><b> -RFID Products</b></span></div>\
<div align=\"left\">&nbsp;<a class=\"style8\" href=\"product1.php\"> -Smart Test Tube&trade; </a></div>\
<div align=\"left\">&nbsp;<a class=\"style8\" href=\"product3.php\"> -S-Label&trade; and S-Band&trade; </a></div>\
<div align=\"left\">&nbsp;<a class=\"style8\" href=\"product8.php\"> -More RFID Products </a></div>\
<div align=\"left\"><span class=\"style8\"><b> -Software</b></span></div>\
<div align=\"left\">&nbsp;<a class=\"style8\" href=\"software1.php\"> -Portable</a></div>\
<div align=\"left\">&nbsp;<a class=\"style8\" href=\"software2.php\"> -Office</a></div>\
<div align=\"left\"><span class=\"style8\"><b> -Hardware</b></span></div>\
<div align=\"left\">&nbsp;<a class=\"style8\" href=\"product7.php\"> -RFID Reader/Writer</a></div>\
\
<div align=\"left\"><span class=\"style8\"><b> -RFID Suite</b></span></div>\
<div align=\"left\">&nbsp;<a class=\"style8\" href=\"product2.php\"> -Smartfuge&trade; </a></div>\
<hr>\
\
<div align=\"left\"><span class=\"style8\"><b> Blood Processing </b></span></div>\
<div align=\"left\">&nbsp;<a class=\"style8\" href=\"product6.php\"> -Transition Valve&trade;</a></div>\
<div align=\"left\">&nbsp;<a class=\"style8\" href=\"product4.php\"> -Blood Processing Devices</a></div>\
<div align=\"left\">&nbsp;<a class=\"style8\" href=\"product5.php\"> -Brain Hyp. Device </a></div>\
<hr>\
<div align=\"left\"><a class=\"style6\" href=\"gallery.php\"><b>Product Gallery </b></a></div>\
</span>\
"
}
//<div align=\"left\">&nbsp;<a class=\"style8\" href=\"\"> -Storage Containers </a></div>\
//\
//<div align=\"left\"><span class=\"style8\"><b> -RFID Reader/Writers</b></span></div>\
//<div align=\"left\">&nbsp;<a class=\"style8\" href=\"\"> -Univ/Indiv/Hand Held</a></div>\
//\
function revertProducts()
{
var x=document.getElementById('smttable').rows
var y=x[1].cells
y[0].innerHTML="<span class=\"style6\"><div align=\"left\" id=\"z\" onMouseOut=\"changeColor('white','z')\" onMouseOver=\"changeColor('#00AAFF','z')\" onclick=\"changeProducts()\"><span>Our Products</span><img src=\"../Images/triangle_down.jpg\"></div></span>"
}
//changes color of Directors when user has mouse over the Directors link
function changeColor(color,cell)
{
document.getElementById(cell).style.color=color;
}



function test(id,flag)
{
document.getElementById(id).innerHTML="<img src=\"../Images/Product%20Images/" + flag + ".jpg\">";	
}
function out(id)
{
document.getElementById(id).innerHTML="\
	<blockquote>\
		<-- click on links for product descriptions and images\
		<br><br><br><br><br><br><br><br><br><br><br><br><br><br>\
	</blockquote>\
";
}
// end hiding script from old browsers -->

