<!--
/*********************************
* author@TechSystems.com *
* http://www.portaldepot.net *
* management@portaldepot.com *
* (c)TechSystems.com 2006 *
* All Rights Reserved. *
*********************************/

//Change the hyper Width & Height to your requirements.
var hyperWidth = 300;
var hyperHeight = 150;

//Change image Size to Your Requirements and input your image sources. 
var imgH = new Array();
imgH[0] = new Image(300, 150);
imgH[0].src = "http://www.nyrdtc.nhs.uk/about_us/staff_structure/ID_thomas_s.jpg";
imgH[1] = new Image(300, 150); 
imgH[1].src = "http://www.nyrdtc.nhs.uk/about_us/staff_structure/ID_brent_s.jpg";
imgH[2] = new Image(300, 150);
imgH[2].src = "http://www.nyrdtc.nhs.uk/about_us/staff_structure/ID_wood_j.jpg";
imgH[3] = new Image(300, 150);
imgH[3].src = "http://www.nyrdtc.nhs.uk/about_us/staff_structure/ID_makepeace_a.jpg";
imgH[4] = new Image(300, 150);
imgH[4].src = "http://www.nyrdtc.nhs.uk/about_us/staff_structure/ID_metcalf_j.jpg";
imgH[6] = new Image(300, 150);
imgH[6].src = "http://www.nyrdtc.nhs.uk/about_us/staff_structure/ID_ayres_g.jpg";
imgH[7] = new Image(300, 150);
imgH[7].src = "http://www.nyrdtc.nhs.uk/about_us/staff_structure/ID_gourlay_r.jpg";
imgH[8] = new Image(300, 150);
imgH[8].src = "http://www.nyrdtc.nhs.uk/about_us/staff_structure/ID_dyker_s.jpg";
imgH[9] = new Image(300, 150);
imgH[9].src = "http://www.nyrdtc.nhs.uk/about_us/staff_structure/ID_thanacoody_r.jpg";




var dropHyperUp = document.getElementById("hyperUp");

document.write("<IMG name='hUp' id='hyperUp' BORDER='0' SRC='' onclick='hideHyperUp()' STYLE='visibility:hidden;z-index:4;position:absolute;' HEIGHT=" +hyperHeight+ " WIDTH=" +hyperWidth+ " />");



function hyperUpImg(obj4,nmm){
dropHyperUp = document.getElementById("hyperUp");
document.hUp.src = imgH[nmm].src;

//The number 60 can be changed for fine tuning.
dropHyperUp.style.left = getPos(obj4,"Left")+ 80; 


//The number -60 can be changed for fine tuning.
dropHyperUp.style.top = getPos(obj4,"Top") + obj4.offsetHeight +35;


dropHyperUp.style.visibility = 'visible';
}

function getPos(obj4,sPos){
var iPos = 0;
while (obj4 != null) {
iPos += obj4["offset" + sPos];
obj4 = obj4.offsetParent;}
return iPos;
}

function hideHyperUp(){
dropHyperUp = document.getElementById("hyperUp");
dropHyperUp.style.visibility = 'hidden';
}
//--> 

