clicked=null;
maximage=1;
function permanent(nr)
{
clicked=nr;

}

function zeigen(nr)
{
if (document.layers)
{
for (i=0;i<=maximage-1;i++)
{
eval('document.d'+i).visibility="hide";
}
eval('document.'+nr).visibility="show";
}
else if (document.all)
{
for (i=0;i<=maximage-1;i++)
{
eval('document.all.d'+i).style.visibility="hidden";
}
eval('document.all.'+nr).style.visibility="visible";
}
else if (document.getElementById)
{
for (i=0;i<=maximage-1;i++)
{
document.getElementById('d'+i).style.visibility="hidden";
}
document.getElementById(nr).style.visibility="visible";
}
}
function verstecken(nr)
{

if (document.layers)
{
eval('document.'+nr).visibility="hide";

if(clicked!=null)
eval('document.'+clicked).visibility="show";

}
else if (document.all)
{
eval('document.all.'+nr).style.visibility="hidden";
if(clicked!=null)
eval('document.all.'+clicked).style.visibility="visible";
}
else if (document.getElementById)
{
document.getElementById(nr).style.visibility="hidden";
if(clicked!=null)
document.getElementById(clicked).style.visibility="visible";

}

}


maxlayer=1;
timer=new Array()
for(i=0;i<maxlayer;i++)
{
timer[i]=false;
}

function init(nr)
{
if (document.layers)
{
for (i=0;i<=maxlayer-1;i++)
{
document.layers["d"+i].onmouseout=new Function("timer["+i+"]=setTimeout('tuwas("+i+")',1000)");
document.layers["d"+i].onmouseover=new Function("clearTimeout(timer["+i+"])");
}

}
else if (document.getElementById)
{
for (i=0;i<=maxlayer-1;i++)
{
document.getElementById('d'+i).onmouseout=new Function("timer["+i+"]=setTimeout('tuwas("+i+")',1000)");
document.getElementById('d'+i).onmouseover=new Function("clearTimeout(timer["+i+"])");
}

}
}

function tuwas(nr)
{
if(document.layers)
{
document.layers["d"+nr].visibility="hidden";
}
else if (document.getElementById)
{
document.getElementById("d"+nr).style.visibility="hidden";
}
}

function cyber()
{
init();
}

function addSpc(c){
	s = "";
	for(i=0;i<c;i++){
		s += "&nbsp;";
	}
	return s;
}

info="<div id='d0'><table width='180' border='0' cellpadding='0' cellspacing='0' bgcolor='#e5e5e5'>"+
"<tr bgcolor='#A3A3A3'>"+
"<td height='20' bgcolor='#A3A3A3'>"+
"<a href='/corporate/corporate.html' class='sublink'>&nbsp;&nbsp;Corporate Profile"+addSpc(15)+"</a></td></tr>"+
"<tr><td height='1'><img src='/img/pixel_transparent.gif' alt='' width='1' height='1' border='0'></td></tr>"+
"<tr bgcolor='#A3A3A3'>"+
"<td height='20'><a href='/corporate/company_information.html' class='sublink'>&nbsp;&nbsp;Company Information"+addSpc(10)+"</a></td></tr>"+
"<tr><td height='1'><img src='/img/pixel_transparent.gif' alt='' width='1' height='1' border='0'></td></tr>"+
"<tr bgcolor='#A3A3A3'>"+
"<td height='20'><a href='/corporate/infrastructure.html' class='sublink'>&nbsp;&nbsp;Infrastructure"+addSpc(20)+"</a></td></tr>"+
"<tr><td height='1'><img src='/img/pixel_transparent.gif' alt='' width='1' height='1' border='0'></td></tr>"+
"<tr bgcolor='#A3A3A3'>"+
"<td height='20'><a href='/corporate/history.html' class='sublink'>&nbsp;&nbsp;History"+addSpc(25)+"</a></td></tr>"+
"<tr><td height='1'><img src='/img/pixel_transparent.gif' alt='' width='1' height='1' border='0'></td></tr>"+
"<tr bgcolor='#A3A3A3'>"+
"<td height='20'><a href='/corporate/business_units.html' class='sublink'>&nbsp;&nbsp;Business Units"+addSpc(20)+"</a></td></tr>"+
"<tr><td height='1'><img src='/img/pixel_transparent.gif' alt='' width='1' height='1' border='0'></td></tr>"+
"<tr bgcolor='#A3A3A3'>"+
"<td height='20'><a href='/corporate/brandworlds.html' class='sublink'>&nbsp;&nbsp;Sharp brand worlds"+addSpc(10)+"</a></td></tr>"+
"<tr><td height='1'><img src='/img/pixel_transparent.gif' alt='' width='1' height='1' border='0'></td></tr>"+
"<tr bgcolor='#A3A3A3'>"+
"<td height='20'><a href='/corporate/research.html' class='sublink'>&nbsp;&nbsp;Research"+addSpc(25)+"</a></td></tr>"+
"</table></div>"