	<!--

var isDOM = (document.getElementById ? true : false); 
var isIE4 = ((document.all && !isDOM) ? true : false);
var isNS4 = (document.layers ? true : false);
function get_Ref(id) {
if (isDOM) return document.getElementById(id);
if (isIE4) return document.all[id];
if (isNS4) return document.layers[id];
}
function get_Sty(id) {
return (isNS4 ? get_Ref(id) : get_Ref(id).style);
} 

var pop_Timer = 0;

var lit_Now = new Array();
function pop_Over(menuNum, itemNum) {
clearTimeout(pop_Timer);
hide_AllBut(menuNum);
lit_Now = get_Tree(menuNum, itemNum);
change_Col(lit_Now, 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 pop_Out(menuNum, itemNum) {
if ((menuNum == 0) && !menu[menuNum][itemNum].target)
hide_AllBut(0)
else
pop_Timer = setTimeout('hide_AllBut(0)', 1000);
}
function get_Tree(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 change_Col(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) {



if (isNS4) bgColor = newCol;
else backgroundColor = newCol;
         }
      }
   }
}
function hide_AllBut(menuNum) {
var keep_Menus = get_Tree(menuNum, 1);
for (count = 0; count < menu.length; count++)
if (!keep_Menus[count])
menu[count][0].ref.visibility = 'hidden';
change_Col(lit_Now, false);
}



function Menue(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;
}

function write_Menus() {
if (!isDOM && !isIE4 && !isNS4) return;

for (currMenu = 0; currMenu < menu.length; currMenu++) with (menu[currMenu][0]) {

var string= '', itemX = 0, itemY = 0;

for (currItem = 1; currItem < menu[currMenu].length; currItem++) with (menu[currMenu][currItem]) {
var item_ID = 'menu' + currMenu + 'item' + currItem;


var wi = (isVert ? width : length);
var he = (isVert ? length : width);

if (isDOM || isIE4) {
string+= '<div id="' + item_ID + '" style="position: absolute; left: ' + itemX + '; top: ' + itemY + '; width: ' + wi + '; height: ' + he + '; visibility: inherit; ';
if (backCol) string+= 'background: ' + backCol + '; ';
string+= '" ';
}
if (isNS4) {
string+= '<layer id="' + item_ID + '" left="' + itemX + '" top="' + itemY + '" width="' +  wi + '" height="' + he + '" visibility="inherit" ';
if (backCol) string+= 'bgcolor="' + backCol + '" ';
}
if (borderClass) string+= 'class="' + borderClass + '" ';


string+= 'onMouseOver="pop_Over(' + currMenu + ',' + currItem + ')" onMouseOut="pop_Out(' + currMenu + ',' + currItem + ')">';


string+= '<table  width="' + (wi - 6) + '" border="0" cellspacing="2" cellpadding="'+ (!isNS4 && borderClass ? 2 : 0) + '"><tr><td align="left" height="' + (he -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) string+= '<td class="' + textClass + '" align="right">' + popInd + '</td>';
}
string+= '</tr></table>' + (isNS4 ? '</layer>' : '</div>');
if (isVert) itemY += length + spacing;
else itemX += length + spacing;
}
if (isDOM) {
var new_Diw = document.createElement('div');
document.getElementsByTagName('body').item(0).appendChild(new_Diw);
new_Diw.innerHTML = string;
ref = new_Diw.style;
ref.position = 'absolute';
ref.visibility = 'hidden';
}


if (isIE4) {
document.body.insertAdjacentHTML('beforeEnd', '<div id="menu' + currMenu + 'div" ' + 'style="position: absolute; visibility: hidden">' + string+ '</div>');
ref = get_Sty('menu' + currMenu + 'div');
}


if (isNS4) {
ref = new Layer(0);
ref.document.write(string);
ref.document.close();
}

for (currItem = 1; currItem < menu[currMenu].length; currItem++) {
itemName = 'menu' + currMenu + 'item' + currItem;
if (isDOM || isIE4) menu[currMenu][currItem].ref = get_Sty(itemName);
if (isNS4) menu[currMenu][currItem].ref = ref.document[itemName];
   }
}
with(menu[0][0]) {
ref.left = x;
ref.top = y;
ref.visibility = 'visible';
   }
}


var menu = new Array();

var def_Over = '#FFFFFF', defBack = '#F2F0F5';

var def_Length = 8;

menu[0] = new Array();

menu[0][0] = new Menue(true, '', 3, 155, 174, '#F8F8F8', '#ECECF3', 'itemBorder', 'basicText'); 

menu[0][1] = new item('&nbsp;&nbsp;<img src="arrow.gif" border=0>Why Is Nanotechnology <BR>&nbsp;&nbsp;&nbsp;&nbsp;Important?', 'nanoimportant.html', '', 30, 12 , 0);


menu[0][2] = new item('&nbsp;&nbsp;<img src="arrow.gif" border=0>Our Clients Needs', '#', '', 18, 8 , 1);

menu[0][3] = new item('&nbsp;&nbsp;<img src="arrow.gif" border=0>We Help You Plan the<BR>&nbsp;&nbsp;&nbsp;&nbsp;Nanotech Future', '#', '', 30, 8 , 2);

menu[0][4] = new item('&nbsp;&nbsp;<img src="arrow.gif" border=0>Background of the<BR>&nbsp;&nbsp;&nbsp;&nbsp;Principals','background.html', '', 30, 8 , 0);

menu[0][5] = new item('&nbsp;&nbsp;<img src="arrow.gif" border=0>An Informal Introduction<BR>&nbsp;&nbsp;&nbsp;&nbsp;to Nanotechnology', '#', '', 30, 8 , 3);

menu[0][6] = new item('&nbsp;&nbsp;<img src="arrow.gif" border=0>Contact Us', 'contact.html', '', 18, 8 , 0);


menu[1] = new Array();
menu[1][0] = new Menue(true, '', 165, -1, 173, '#F8F8F8', '#F2F0F5', 'basicBorder', 'basicText');


menu[1][1] = new item('Our Clients and Their Needs','clientsneeds1.html', '', 30, 2, 0);

menu[1][2] = new item('Corporations','clientsneeds2.html', '', 18, 2, 0);

menu[1][3] = new item('Nanotechnology Start-ups','clientsneeds3.html', '', 18, 2, 0);

menu[1][4] = new item('Financial Interests','clientsneeds4.html', '', 18, 2, 0);
menu[1][5] = new item('Law Firms','clientsneeds5.html', '', 18, 2, 0);
menu[1][6] = new item('Governments and Universities','clientsneeds6.html', '', 30, 2, 0);


menu[2]= new Array();
menu[2][0] = new Menue(true, '', 165, -22, 173, '#F8F8F8', '#F2F0F5', 'basicBorder', 'ItemText');

menu[2][1] = new item('Plan the Nanotech Future','plannanofuture1.html', '', 18, 2, 0);

menu[2][2] = new item('Product Transformations','plannanofuture2.html', '', 18, 2, 0);

menu[2][3] = new item('Assessing Nanotech Breakthroughs','plannanofuture3.html', '', 30, 2, 0);

menu[2][4] = new item('Setting Strategy','plannanofuture4.html', '', 18, 2, 0);

menu[2][5] = new item('Predicting the Future of Nanotechnology','plannanofuture5.html', '', 30, 2, 0);

menu[3] = new Array();
menu[3][0] = new Menue(true, '', 165, -100, 193, '#F8F8F8', '#F2F0F5', 'basicBorder', 'basicText');


menu[3][1] = new item('What is Nanotechnology?','whatis.html', '', 18, 2, 0);

menu[3][2] = new item('Why is Nanotechnology Unpredictable?','whyis.html', '', 30, 2, 0);

menu[3][3] = new item('Why Focus on Nanotechnology?','whyfocus.html', '', 30, 2, 0);

menu[3][4] = new item('Is Nanotechnology used today?','isnano.html', '', 18, 2, 0);
menu[3][5] = new item('Will Nanotechnology Affect Me or My Business?','willnano.html', '', 30, 2, 0);
menu[3][6] = new item('Does the Federal Government fund Nanotechnology?','doesfederal.html', '', 30, 2, 0);
menu[3][7] = new item('What are the Challenges of Nanotechnology?','whatchallenges.html', '', 30, 2, 0);
menu[3][8] = new item('Is Nanotechnology Dangerous?','isdanger.html', '', 18, 2, 0);



var pop_OldWidth = window.innerWidth;
nsResizeHandler = new Function('if (pop_OldWidth != window.innerWidth) location.reload()');



if (isNS4) document.captureEvents(Event.CLICK);
document.onclick = clickHandle;

function clickHandle(evt)
{
 if (isNS4) document.routeEvent(evt);
 hide_AllBut(0);
}



//  End -->

