function OpenWin(str,w,h) {
				searchWin = window.open(str,'finestra','scrollbars=nos,resizable=no,width='+w+',height='+h+',status=no,location=no,menubar=no,screenX=70,screenY=70');
				searchWin.focus();
} 



// check if the browser is Navigator 3 or higher:
agent = navigator.userAgent;
browserVer = 2;
if (agent.substring(0,7) == "Mozilla")
{
    if (parseInt(agent.substring(8,9)) >= 3) {browserVer = 1;}
}
// preload universal images:
if (browserVer == 1) {

p1b = new Image(210,422);
p1b.src = "/images/webea2_off.jpg";
p1c = new Image(210,422);
p1c.src = "/images/webea2.jpg";

p2b = new Image(210,422);
p2b.src = "/images/ecomm2_off.jpg";
p2c = new Image(210,422);
p2c.src = "/images/ecomm2.jpg";

p3b = new Image(210,422);
p3b.src = "/images/soc2_off.jpg";
p3c = new Image(210,422);
p3c.src = "/images/soc2.jpg";

p4b = new Image(210,422);
p4b.src = "/images/foto2_off.jpg";
p4c = new Image(210,422);
p4c.src = "/images/foto2.jpg";

}

function hiLite(imgDocID,imgObjName) {
// manages mouseOver animations
//   imgDocID - the name or number of the document image to be replaced
//   imgObjName - the name of the image object to be swapped in

if (browserVer == 1) {
document.images[imgDocID].src = eval(imgObjName + ".src")
	}
}

