//--------------- Highlight Current Category ---------------------
window.innerWidth=870
function headerTable(category)
{
     document.write("<table bgcolor='#000000' border=1 cellpadding=0 cellspacing=0 width='100%'>");
     document.write("<tr align=center bgcolor='#eeeeee'>");
     if(category == 0)
        document.write("<td bgcolor='#a0b8c8' width='17%'><font size=-1 face=arial><a href='index.html'>3DP Home</a></font></td>");
     else
        document.write("<td width='17%'><font size=-1 face=arial><a href='index.html'>3DP Home</a></font></td>");
     if(category == 1)
        document.write("<td bgcolor='#a0b8c8' width='17%'><font size=-1 face=arial><a href='intro.html'>What is 3DP?</a></font></td>");
     else
        document.write("<td width='17%'><font size=-1 face=arial><a href='intro.html'>What is 3DP?</a></font></td>");
     if(category == 2)
        document.write("<td bgcolor='#a0b8c8' width='17%'><font size=-1 face=arial><a href='licensees.html'>Licensees</a></font></td>");
     else
        document.write("<td width='17%'><font size=-1 face=arial><a href='licensees.html'>Licensees</a></font></td>");
     if(category == 3)
        document.write("<td bgcolor='#a0b8c8' width='17%'><font size=-1 face=arial><a href='applications.html'>Applications</a></font></td>");
     else
        document.write("<td width='17%'><font size=-1 face=arial><a href='applications.html'>Applications</a></font></td>");
     if(category == 4)
        document.write("<td bgcolor='#a0b8c8' width='17%'><font size=-1 face=arial>Research</font></td>");
     else
        document.write("<td width='17%'><font size=-1 face=arial>Research</font></td>");
     document.write("</tr>");
     document.write("</table>");
}
//------------ End of Highlight Current Category -----------------

function enlargeImage(name, title, text)
{
   newWindow = window.open("", "enlargedImage", "innerWidth=400,innerHeight=350");
   newWindow.document.open("text/html", "replace");
   newWindow.document.writeln("<HTML>");
   newWindow.document.writeln("<HEAD>");
   newWindow.document.writeln("<TITLE>");
   newWindow.document.writeln(title);
   newWindow.document.writeln("</TITLE>");
   newWindow.document.writeln("</HEAD>");
   newWindow.document.writeln("<BODY background='images/bg.jpg'>");
   newWindow.document.writeln("<CENTER>");
   newWindow.document.writeln("<IMG SRC='" + name + "'>");
   newWindow.document.writeln("</CENTER>");
   newWindow.document.writeln("<HR>");
   newWindow.document.writeln("<FONT size=-1>" + text + "</FONT>");
   newWindow.document.writeln("<CENTER><FORM NAME='closeForm'><INPUT TYPE='button' NAME='closeButton' value='Close This Window' onClick='window.close()'></FORM></CENTER>");
   newWindow.document.writeln("</BODY>");
   newWindow.document.writeln("</HTML>");
   newWindow.document.close();
}
