<!--
window.onload=showMenu;
function showMenu(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('menu'+i)) 
		{document.getElementById('menu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

activateMenu = function(nav)
{
    /* currentStyle restricts the Javascript to IE only */
	if (document.all && document.getElementById(nav).currentStyle)
	{  
        var navroot = document.getElementById(nav);        
        /* Get all the list items within the menu */
        var lis=navroot.getElementsByTagName("LI");  
        for (i=0; i<lis.length; i++)
        {
           /* If the LI has another menu level */
            if(lis[i].lastChild.tagName=="UL")
            {
                /* assign the function to the LI */
             	lis[i].onmouseover=function()
             	{	
                   /* display the inner menu */
                   this.lastChild.style.display="block";
                }
                lis[i].onmouseout=function() 
                {                       
                   this.lastChild.style.display="none";
                }
            }
        }
    }
}

window.onload= function()
{
    activateMenu('nav'); 
}

function show_div(div_id){
				document.getElementById('div1a').style.display='none';
				document.getElementById('div1b').style.display='none';
				if (div_id != 'none')
				{
				document.getElementById(div_id).style.display='block';
				}
			}

//*****************************************
// Blending Image Slide Show Script- 
// © Dynamic Drive (www.dynamicdrive.com)
// For full source code, visit http://www.dynamicdrive.com/
//*****************************************

//specify interval between slide (in mili seconds)
var slidespeed=3000

//specify images
var slideimages=new Array("images/jpgs/mfg1d.jpg","images/jpgs/toshibafooter.jpg","images/jpgs/mfg2d.jpg","images/jpgs/toshibafooter.jpg","images/jpgs/mfg3d.jpg","images/jpgs/toshibafooter.jpg")

//specify corresponding links
var slidelinks=new Array("","http://uk.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/generic_content.jsp?service=UK&ID=DATA_Recovery","","http://uk.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/generic_content.jsp?service=UK&ID=DATA_Recovery","","http://uk.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/generic_content.jsp?service=UK&ID=DATA_Recovery")

var newwindow=1 //open links in new window? 1=yes, 0=no

var imageholder=new Array()

for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
if (newwindow)
window.open(slidelinks[whichlink])
else
window.location=slidelinks[whichlink]
}


//-->