// n=full path to image
// a=width of window to open
// b=height of window to open
// t=title of image for title bar and on top of image
// z=window name

function alertSize()
{
//  var myWidth = 0, myHeight = 0;
//  var newWidth, newHeight
  if( typeof( window.innerWidth ) == 'number' )
  {
    //Non-IE (subtract 17 from total to eliminate the scrollbar width
    insideWidth = window.innerWidth-17;
    outsideWidth = window.outerWidth;
    insideHeight = window.innerHeight;
    outsideHeight = window.outerHeight;
  }
    else if( document.documentElement &&( document.documentElement.clientWidth || document.documentElement.clientHeight ) )
  {
    //IE 6+ in 'standards compliant mode'
    insideWidth = document.documentElement.clientWidth;
    outsideWidth = document.documentElement.clientWidth+45;  
    insideHeight = document.documentElement.clientHeight;
// outsideheight is NOT working correctly HOW do I get this value in IE    
    outsideHeight = document.documentElement.clientHeight+149;  
  }
  else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) )
  {
  //IE 4 & 6 not in standards compliant mode
    insideWidth = document.body.clientWidth+5;
    outsideWidth = document.body.clientWidth+30;  
    insideHeight = document.body.clientHeight;
// outsideheight is NOT working correctly HOW do I get this value in IE    
    outsideHeight = document.body.clientHeight+149;
  }
  
  if (insideWidth < 775)
  {
    outsideWidth=800;
//    outsideHeight=outsideHeight+18;
  }
  
//  if (myHeight < 600)
//  {
//    newHeight=screen.availHeight;
//  }
//  else
//  {
//    newHeight=myHeight;
//  }  

alert('Your window is:\n\n' + insideWidth + ' pixels by ' + insideHeight + ' pixels.');
alert('1a. Your window is:\n\n' + document.body.clientWidth + ' pixels by ' + document.body.clientHeight + ' pixels.');
alert('1b. Your window is:\n\n' + document.body.offsetWidth + ' pixels by ' + document.body.offsetHeight + ' pixels.');

//  window.resizeTo(outsideWidth, outsideHeight);
  window.resizeTo(outsideWidth, document.body.offsetHeight);  
  
alert('2. Your window is:\n\n' + document.body.offsetWidth + ' pixels by ' + document.body.offsetHeight + ' pixels.');


//  window.moveTo((screen.width-newWidth)/2, (screen.height-outsideHeight)/2);



//alert('1. Your screen is:\n\n' + screen.width + ' pixels by ' + screen.height + ' pixels.');

//If (screen.availWidth)
//alert('2. Your window is:\n\n' + screen.availWidth + ' pixels by ' + screen.availHeight + ' pixels.');

//If (window.screenLeft)
//alert('3. Your window is located at:\n\n' + window.screenLeft + ' pixels from the left by ' + window.screenTop + ' pixels from the top.');

//If (window.innerWidth)
//alert('4. Your window is:\n\n' + window.innerWidth + ' pixels by ' + window.innerHeight + ' pixels.');

}

function seebig(n, a, b, t, z)
{
//      NewWindow = window.open("", z, "left=0,top=0,width=1,height=1,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
//      NewWindow.close()
if (a > screen.width)
   a=screen.width-12;
if (b > screen.height)
   b=screen.height-60;

      w = window.open("", z, "left=0,top=0,width="+a+",height="+b+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");

	  w.document.open();
	  w.document.write('<html><head><title>'+t+'</title>');
	  w.document.write('</head><body bgcolor="#d9cfca" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
	  w.document.write('<table><tr><td>');
	  w.document.write('<font color=034DA9><b><div align=center>'+t+'</b></p>');
	  w.document.write('<a title="Click on the image to close this window" href="javascript:onClick=self.close();"><img src="'+n+'" border="0"></a>');
	  w.document.write('</td></tr></table>');
//      w.document.write('<div align=center><a href=javascript:onClick=self.close()><img src=images/close.gif border=0></a></div></body>');
	  w.document.write('</body></html>');
	  w.document.close();
	  w.focus();
}

function Openmov(n, a, b, z, l, t)
// n=full path to image
// a=width of window to open
// b=height of window to open
// z=window name
// l=Left screen position
// t=Top screen position
{
w = window.open(n, z,"HEIGHT="+b+",WIDTH="+a+",left="+l+",top="+t+",status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=no");
}

<!-- Begin
var isDOM = (document.getElementById ? true : false); 
// isBrowser('Netscape',4);
// if (browserOk)
//  isNetScape = true;
// else
//  isNetScape = false;

function getRef(id)
{
 if (isDOM) return document.getElementById(id);
}

function isBrowser(b,v)
{
 browserOk = false;
 versionOk = false;
 browserOk = (navigator.appName.indexOf(b) != -1);
 if (v == 0) versionOk = true;
 else  versionOk = (v <= parseInt(navigator.appVersion));
 return browserOk && versionOk;
}

function getSty(id)
{
 return (0 ? getRef(id) : getRef(id).style);
}

var popTimer = 0;
var litNow = new Array();

function writeMenus()
{
 for (currMenu = 0; currMenu < menu.length; currMenu++) with (menu[currMenu][0])
 {
  var str = '', itemX = 0, itemY = 0;
  for (currItem = 1; currItem < menu[currMenu].length; currItem++) with (menu[currMenu][currItem])
  {
   var itemID = 'menu' + currMenu + 'item' + currItem;
   var w = (isVert ? width : length);
   var h = (isVert ? length : width);
   if (isDOM)
   {
    str += '<div id="' + itemID + '" style="position: absolute; left: ' + itemX + '; top: ' + itemY + '; width: ' + w + '; height: ' + h + '; visibility: inherit; ';
    if (backCol) str += 'background: ' + backCol + '; ';
    str += '" ';
   }
   if (borderClass) str += 'class="' + borderClass + '" ';
   str += 'onMouseOver="popOver(' + currMenu + ',' + currItem + ')" onMouseOut="popOut(' + currMenu + ',' + currItem + ')">';
   str += '<table width="' + (w - 8) + '" border="0" cellspacing="0" cellpadding="' + (!0 && borderClass ? 3 : 0) + '"><tr><td align="left" height="' + (h - 7) + '">' + '<a class="' + textClass + '" href="' + href + '"' + (frame ? ' target="' + frame + '">' : '>') + text + '</a></td>';
   if (target > 0)
   {
    menu[target][0].parentMenu = currMenu;
    menu[target][0].parentItem = currItem;
    if (popInd) str += '<td class="' + textClass + '" align="right">' + popInd + '</td>';
   }
   str += '</tr></table>' + (0 ? '</layer>' : '</div>');
   if (isVert) itemY += length + spacing;
   else itemX += length + spacing;
 }
 if (isDOM)
 {
 var newDiv = document.createElement('div');
 document.getElementsByTagName('body').item(0).appendChild(newDiv);
 newDiv.innerHTML = str;
 ref = newDiv.style;
 ref.position = 'absolute';
 ref.visibility = 'hidden';
 }
for (currItem = 1; currItem < menu[currMenu].length; currItem++)
{
 itemName = 'menu' + currMenu + 'item' + currItem;
 if (isDOM) menu[currMenu][currItem].ref = getSty(itemName);
}
}

with(menu[0][0])
{
 ref.left = x;
 ref.top = y;
 ref.visibility = 'visible';
 }
}

function popOver(menuNum, itemNum)
{
 clearTimeout(popTimer);
 hideAllBut(menuNum);
 litNow = getTree(menuNum, itemNum);
 changeCol(litNow, true);
 targetNum = menu[menuNum][itemNum].target;
 if (targetNum > 0)
 {
  thisX = parseInt(menu[menuNum][0].ref.left) + parseInt(menu[menuNum][itemNum].ref.left);
  thisY = parseInt(menu[menuNum][0].ref.top) + parseInt(menu[menuNum][itemNum].ref.top);
  with (menu[targetNum][0].ref)
  {
   left = parseInt(thisX + menu[targetNum][0].x);
   top = parseInt(thisY + menu[targetNum][0].y);
   visibility = 'visible';
  }
 }
}

function popOut(menuNum, itemNum)
{
 if ((menuNum == 0) && !menu[menuNum][itemNum].target)
  hideAllBut(0)
 else
  popTimer = setTimeout('hideAllBut(0)', 500);
}

function getTree(menuNum, itemNum)
{
 itemArray = new Array(menu.length);
 while(1)
 {
  itemArray[menuNum] = itemNum;
  if (menuNum == 0) return itemArray;
  itemNum = menu[menuNum][0].parentItem;
  menuNum = menu[menuNum][0].parentMenu;
 }
}

function changeCol(changeArray, isOver)
{
 for (menuCount = 0; menuCount < changeArray.length; menuCount++)
 {
  if (changeArray[menuCount])
  {
   newCol = isOver ? menu[menuCount][0].overCol : menu[menuCount][0].backCol;
   with (menu[menuCount][changeArray[menuCount]].ref)
   {
    backgroundColor = newCol;
   }
  }
 }
}

function hideAllBut(menuNum)
{
 var keepMenus = getTree(menuNum, 1);
 for (count = 0; count < menu.length; count++)
 if (!keepMenus[count])
 menu[count][0].ref.visibility = 'hidden';
 changeCol(litNow, false);
}

// *** MENU CONSTRUCTION FUNCTIONS ***

function Menu(isVert, popInd, x, y, width, overCol, backCol, borderClass, textClass)
{
 this.isVert = isVert;
 this.popInd = popInd
 this.x = x;
 this.y = y;
 this.width = width;
 this.overCol = overCol;
 this.backCol = backCol;
 this.borderClass = borderClass;
 this.textClass = textClass;
 this.parentMenu = null;
 this.parentItem = null;
 this.ref = null;
}

function Item(text, href, frame, length, spacing, target)
{
 this.text = text;
 this.href = href;
 this.frame = frame;
 this.length = length;
 this.spacing = spacing;
 this.target = target;
 this.ref = null;
}

var menu = new Array();
var defOver = '#ffffff', defBack = '#B5CFD6';
var defLength = 20;
var topmenuheight = 16;

// How can I adjust this based on window size?
var leftstart=29;
menu[0] = new Array();
menu[0][0] = new Menu(false, '', leftstart, 10, topmenuheight, '', '', '', 'itemText');

isBrowser('Netscape',5);

if (browserOk)
{
// Menu for Netscape 5 and above, including Mozilla and Firefox
 menu[0][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'profile.htm', '_top', 87, 12, 1);
 menu[0][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'products.htm', '_top', 64, 15, 2);
 menu[0][3] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'tech-support.htm', '', 110, 12, 3);
 menu[0][4] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'sales-service.htm', '_top', 100, 10, 4);
 menu[0][5] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'investors.htm', '_top', 110, 13, 0);
 menu[0][6] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'links.htm', '_top', 45, 12, 5);
 menu[0][7] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'sitemap.htm', '_top', 60, 10, 0);
 menu[0][8] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'contact.htm', '_top', 73, 10, 0);
}
else
{
  isBrowser('Explorer',5);
  if (browserOk)
  {
//  Menu for Internet Explorer 5 and above
    menu[0][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'profile.htm', '_top', 87, 12, 1);
    menu[0][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'products.htm', '_top', 64, 15, 2);
    menu[0][3] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'tech-support.htm', '', 110, 12, 3);
    menu[0][4] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'sales-service.htm', '_top', 100, 10, 4);
    menu[0][5] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'investors.htm', '_top', 110, 13, 0);
    menu[0][6] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'links.htm', '_top', 45, 12, 5);
    menu[0][7] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'sitemap.htm', '_top', 60, 10, 0);
    menu[0][8] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'contact.htm', '_top', 73, 10, 0);
   }
  else
  {
// Menu for Netscape 4
   menu[0][1] = new Item('&nbsp;About MediVision&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'profile.htm', '_top', 87, 12, 0);
   menu[0][2] = new Item('&nbsp;Products', 'products.htm', '_top', 64, 15, 0);
   menu[0][3] = new Item('&nbsp;Technical Support', 'tech-support.htm', '', 110, 12, 0);
   menu[0][4] = new Item('&nbsp;Sales & Service', 'sales-service.htm', '_top', 100, 10, 0);
   menu[0][5] = new Item('&nbsp;Investor Relations', 'investors.htm', '_top', 110, 13, 0);
   menu[0][6] = new Item('&nbsp;Links', 'links.htm', '_top', 45, 12, 0);
   menu[0][7] = new Item('&nbsp;Site Map', 'sitemap.htm', '_top', 60, 10, 0);
   menu[0][8] = new Item('&nbsp;Contact Us', 'contact.htm', '_top', 73, 10, 0);
  }
}

// menu[0][1] = new Item('&nbsp;About OIS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'profile.htm', '_top', 87, 12, 1);
// menu[0][2] = new Item('&nbsp;Products', 'products.htm', '_top', 64, 15, 3);
// menu[0][3] = new Item('&nbsp;Technical Support', 'tech-support.htm', '', 110, 12, 4);
// menu[0][4] = new Item('&nbsp;Sales & Service', 'sales-service.htm', '_top', 100, 10, 5);
// menu[0][5] = new Item('&nbsp;Investor Relations', 'investors.htm', '_top', 110, 13, 0);
// menu[0][6] = new Item('&nbsp;Links', 'links.htm', '_top', 45, 12, 6);
// menu[0][7] = new Item('&nbsp;Site Map', 'sitemap.htm', '_top', 60, 10, 0);
// menu[0][8] = new Item('&nbsp;Contact Us', 'contact.htm', '_top', 73, 10, 0);

// About OIS menu
menu[1] = new Array();
menu[1][0] = new Menu(true, '>', -24, topmenuheight, 155, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[1][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Alliance with Agfa&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'agfa-alliance.htm', '_top', defLength, 0, 0);
menu[1][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DICOM Compliance&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'dicomcompliance.htm', '_top', defLength, 0, 0);

// Products menu
menu[2] = new Array();
menu[2][0] = new Menu(true, '>', -22, topmenuheight, 240, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[2][1] = new Item("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;What's New?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", 'new-products.htm', '_top', defLength, 0, 0);
menu[2][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FA, Color and ICG Systems&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'FA-Color-ICG-systems.htm', '_top', defLength, 0, 8);
menu[2][3] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Software Applications&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;','Applications.htm', '_top', defLength, 0, 9);
menu[2][4] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Slit Lamp Systems&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'SlitLamp-systems.htm', '_top', defLength, 0, 10);
menu[2][5] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Networking and Scalable Solutions&nbsp;', 'networking-products.htm' , '_top', defLength, 0, 11);

// Technical Support menu
menu[3] = new Array();
menu[3][0] = new Menu(true, '>', -11, topmenuheight, 175, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[3][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;10.3 Training&nbsp;&nbsp;', 'tech-support-10.3-training.htm', '_top', defLength, 0, 0);
menu[3][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FAQ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'tech-support-faq.htm', '_top', defLength, 0, 0);
menu[3][3] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Hours of Operation&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'tech-support-hours.htm', '_top', defLength, 0, 0);
menu[3][4] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Provide Feedback&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'tech-support-feedback.htm', '_top', defLength, 0, 0);
menu[3][5] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Testimonials&nbsp;', 'tech-support-testimonials.htm', '_top', defLength, 0, 0);

// Sales & Service menu
menu[4] = new Array();
menu[4][0] = new Menu(true, '>', -13, topmenuheight, 144, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[4][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Live Demonstrations', 'Upcoming Live Demonstrations.htm', '_top', defLength, 0, 0);
menu[4][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;International', 'sales-distributors-international.htm', '_top', defLength, 0, 0);
menu[4][3] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;US and Canada', 'sales-usandcanada.htm', '_top', defLength, 0, 0);

// Links menu
menu[5] = new Array();
menu[5][0] = new Menu(true, '<', -16, topmenuheight, 200, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[5][3] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Agfa&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'http://www.agfa.com/healthcare/', '_new', defLength, 0, 0);
menu[5][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ophthalmic Imaging Systems&nbsp;', 'http://www.oisi.com', '_new', defLength, 0, 0);
menu[5][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CCS Pawlowski GmBH&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'http://www.ccs-imaging.de/e_index.html', '_new', defLength, 0, 0);

// Site Map menu not used
menu[6] = new Array();
menu[6][0] = new Menu(true, '<', 0, topmenuheight, 180, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[6][1] = new Item('Ophthalmic Imaging Systems', 'http://www.oisi.com', '_new', defLength, 0, 0);
menu[6][2] = new Item('AGFA', 'http://www.agfa.com/healthcare/', '_new', defLength, 0, 0);

// Contact Us
menu[7] = new Array();
menu[7][0] = new Menu(true, '>', -9, topmenuheight, 78, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[7][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sales&nbsp;&nbsp;', 'contact-sales.htm', '_top', defLength, 0, 0);
menu[7][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Service&nbsp;&nbsp;', 'contact-service.htm', '_top', defLength, 0, 0);
menu[7][3] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Support&nbsp;&nbsp;', 'contact-support.htm', '_top', defLength, 0, 0);

// FA, Color and ICG Systems menu.
menu[8] = new Array();
menu[8][0] = new Menu(true, '>', 240, 0, 220, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[8][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;WinStation XP 11K™&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'winstation11K.htm', '_top', defLength, 0, 0);
menu[8][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;WinStation XP 5000™&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'winstation5000.htm', '_top', defLength, 0, 0);
menu[8][3] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;WinStation XP Essential(3200)™&nbsp;', 'winstation3200.htm', '_top', defLength, 0, 0);
//menu[8][4] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;WinStation XP 1400™&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', 'winstation1400.htm', '_top', defLength, 0, 0);
//menu[8][5] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Digital Fundus Imager II™', 'dfi.htm', '_top', defLength, 0, 0);

// Software Applications
menu[9] = new Array();
menu[9][0] = new Menu(true, '>', 240, 0, 185, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[9][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OIS WinStation XP 10.3™', 'WinStationXP.htm', '_top', defLength, 0, 12);
//menu[9][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OIS WinStation Manager™', 'WinStationManager.htm', '_top', defLength, 0, 0);
// menu[9][3] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OIS Digital Reporter™', 'digitalreporter.htm', '_top', defLength, 0, 0);

// Slit Lamp Systems
menu[10] = new Array();
menu[10][0] = new Menu(true, '>', 240, 0, 200, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[10][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OIS Digital Slit Lamp Imager™', 'dsli.htm', '_top', defLength, 0, 0);
menu[10][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OIS Photo Slit Lamp Imager™', 'psli.htm', '_top', defLength, 0, 0);

// Networking and Scalable Solutions
menu[11] = new Array();
menu[11][0] = new Menu(true, '>', 240, 0, 180, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[11][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OIS WebStation™', 'WebStation.htm', '_top', defLength, 0, 0);
menu[11][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Agfa IMPAX™', 'agfa-Impax.htm', '_top', defLength, 0, 0);
menu[11][3] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Agfa WEB1000™', 'agfa-WEB1000.htm', '_top', defLength, 0, 0);

// Company Profile (Press Releases) menu
// menu[12] = new Array();
// menu[12][0] = new Menu(true, '>', 155, 0, 180, defOver, defBack, 'itemBorder', 'itemTextReverse');
// menu[12][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;22/05/2002 Press Release&nbsp;', 'press17.htm', '_top', defLength, 0, 0);
// menu[12][2] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;20/03/2002 Press Release&nbsp;', 'press16.htm', '_top', defLength, 0, 0);
// menu[12][3] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;27/11/2001 Press Release&nbsp;', 'press15.htm', '_top', defLength, 0, 0);
// menu[12][4] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;29/10/2001 Press Release&nbsp;', 'press14.htm', '_top', defLength, 0, 0);
// menu[12][5] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;26/09/2001 Press Release&nbsp;', 'press13.htm', '_top', defLength, 0, 0);
// menu[12][6] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;26/09/2001 Press Release&nbsp;', 'press12.htm', '_top', defLength, 0, 0);
// menu[12][7] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;21/09/2001 Press Release&nbsp;', 'press11.htm', '_top', defLength, 0, 0);
// menu[12][8] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;30/08/2001 Press Release&nbsp;', 'press10.htm', '_top', defLength, 0, 0);
// menu[12][9] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;13/07/2001 Press Release&nbsp;', 'press9.htm', '_top', defLength, 0, 0);
// menu[12][10] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;31/05/2001 Press Release&nbsp;', 'press8.htm', '_top', defLength, 0, 0);
// menu[12][11] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;29/03/2001 Press Release&nbsp;', 'press7.htm', '_top', defLength, 0, 0);
// menu[12][12] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;08/01/2001 Press Release&nbsp;', 'press6.htm', '_top', defLength, 0, 0);
// menu[12][13] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;12/12/2000 Press Release&nbsp;', 'press5.htm', '_top', defLength, 0, 0);
// menu[12][14] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;05/12/2000 Press Release&nbsp;', 'press4.htm', '_top', defLength, 0, 0);
// menu[12][15] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;16/11/2000 Press Release&nbsp;', 'press3.htm', '_top', defLength, 0, 0);
// menu[12][16] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;17/07/2000 Press Release&nbsp;', 'press2.htm', '_top', defLength, 0, 0);
// menu[12][17] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;03/07/2000 Press Release&nbsp;', 'press1.htm', '_top', defLength, 0, 0);

// WinStation XP
menu[12] = new Array();
menu[12][0] = new Menu(true, '>', 185, 0, 120, defOver, defBack, 'itemBorder', 'itemTextReverse');
menu[12][1] = new Item('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AutoMontage™&nbsp;&nbsp;&nbsp', 'AutoMontage.htm', '_top', defLength, 0, 0);

// document.onclick = clickHandle;

function clickHandle(evt)
{
 hideAllBut(0);
}

