// -----------------------------------------------------------
// Definizione delle Variabili
// che presentano le immagini all'evento onmouseon
// ed all'evento onmouseover
// -----------------------------------------------------------

  IMGOFF1 = new Image;
  IMGOFF1.src   = "../../images/maps/Col_globo.gif";

  IMGOVE1 = new Image;
  IMGOVE1.src   = "../../images/maps/S_AmerPorOver.gif";
  IMGOVE2 = new Image;
  IMGOVE2.src   = "../../images/maps/N_AmerPorOver.gif";
  IMGOVE3 = new Image;
  IMGOVE3.src   = "../../images/maps/AfricaPorOver.gif";
  IMGOVE4 = new Image;
  IMGOVE4.src   = "../../images/maps/EuropaOver.gif";
  IMGOVE5 = new Image;
  IMGOVE5.src   = "../../images/maps/AsiaPorOver.gif";

function NormImg(imgNumber){
	    BimgObjName="IMGOFF" + imgNumber;
	    BimgID="globomap";
		document.images[BimgID].src = eval(BimgObjName + ".src");
}

function OverImg(imgNumber){
	    BimgObjName="IMGOVE" + imgNumber;
	    BimgID="globomap";
		document.images[BimgID].src = eval(BimgObjName + ".src");
}

var IEMap;
IEMap = "<img ID=globomap border=0 src='../../images/maps/Col_globo.gif' width='350' height='190'>";
IEMap = IEMap + "<span style='left: 264; top: 385; position: absolute' onmouseover=" + String.fromCharCode(34) + "OverImg('1')" + String.fromCharCode(34) + " onmouseout=" + String.fromCharCode(34) + "NormImg('1')" + String.fromCharCode(34) + " onclick=" + String.fromCharCode(34) + "javascript:window.top.location.href='S_Amer.htm'" + String.fromCharCode(34) + "><img border='0' src='../../images/common/spacer.gif' width='50' height='67'></span>";
IEMap = IEMap + "<span style='left: 183; top: 288; position: absolute' onmouseover=" + String.fromCharCode(34) + "OverImg('2')" + String.fromCharCode(34) + " onmouseout=" + String.fromCharCode(34) + "NormImg('1')" + String.fromCharCode(34)+ " onclick=" + String.fromCharCode(34) + "javascript:window.top.location.href='N_Amer.htm'" + String.fromCharCode(34) + "><img border='0' src='../../images/common/spacer.gif' width='111' height='84'></span>";
IEMap = IEMap + "<span style='left: 326; top: 364; position: absolute' onmouseover=" + String.fromCharCode(34) + "OverImg('3')" + String.fromCharCode(34) + " onmouseout=" + String.fromCharCode(34)+ "NormImg('1')" + String.fromCharCode(34)+ " onclick=" + String.fromCharCode(34)+ "javascript:window.top.location.href='Africa.htm'" + String.fromCharCode(34)+ "><img border='0' src='../../images/common/spacer.gif' width='48' height='68'></span>";
IEMap = IEMap + "<span style='left: 332; top: 306; position: absolute' onmouseover=" + String.fromCharCode(34) + "OverImg('4')" + String.fromCharCode(34) + " onmouseout=" + String.fromCharCode(34) + "NormImg('1')" + String.fromCharCode(34) + " onclick=" + String.fromCharCode(34) + "javascript:window.top.location.href='Europa.htm'" + String.fromCharCode(34) + "><img border='0' src='../../images/common/spacer.gif' width='41' height='52'></span>";
IEMap = IEMap + "<span style='left: 385; top: 284; position: absolute' onmouseover=" + String.fromCharCode(34) + "OverImg('5')" + String.fromCharCode(34) + " onmouseout=" + String.fromCharCode(34) + "NormImg('1')" + String.fromCharCode(34) + " onclick=" + String.fromCharCode(34) + "javascript:window.top.location.href='Asia.htm'" + String.fromCharCode(34) + "><img border='0' src='../../images/common/spacer.gif' width='133' height='99'></span>";
IEMap = IEMap + "<p align='center'><font size='1'>Leva o cursor sobre um continente e clica !<br>&nbsp;</font>";

function DispMap() {
var brwChk = navigator.userAgent.indexOf('MSIE') != -1 && 
	navigator.userAgent.indexOf('Windows') != -1 && 
	navigator.appVersion.substring(0,1) > 3;

	if(brwChk){
		Mappa.innerHTML=IEMap;
	}
}