<!--
function nothing() {
	return;
}
 
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

if ((browserName == "Netscape" && browserVer >= 3) || (browserVer > 3)) versioff = "n3";
else versioff = "x";

if (versioff == "n3"){
	a1on = new Image();	a1on.src = "img/main/aoson.gif";
	a2on = new Image(); a2on.src = "img/main/tourismon.gif";
	a3on = new Image();	a3on.src = "img/main/rareon.gif";
	a4on = new Image();	a4on.src = "img/main/ibaon.gif";
	a5on = new Image();	a5on.src = "img/main/dangeron.gif";
	a6on = new Image(); a6on.src = "img/main/worldon.gif";
	a7on = new Image(); a7on.src = "img/main/memberson.gif";
	a8on = new Image();	a8on.src = "img/main/partnerson.gif";
	a9on = new Image();	a9on.src = "img/main/contacton.gif";
		

	a1off = new Image(); a1off.src = "img/main/aosoff.gif";               
	a2off = new Image(); a2off.src = "img/main/tourismoff.gif";
	a3off = new Image(); a3off.src = "img/main/rareoff.gif";
	a4off = new Image(); a4off.src = "img/main/ibaoff.gif";
	a5off = new Image(); a5off.src = "img/main/dangeroff.gif";
	a6off = new Image(); a6off.src = "img/main/worldoff.gif";
	a7off = new Image(); a7off.src = "img/main/membersoff.gif";
	a8off = new Image(); a8off.src = "img/main/partnersoff.gif";
	a9off = new Image(); a9off.src = "img/main/contactoff.gif";
};

function img_act(imgName) {
	if (versioff == "n3"){
		imgOn = eval("a" + imgName + "on.src");
		imgName = "aimg" + imgName;
		document [imgName].src = imgOn;
	};
};

function img_inact(imgName) {
	if (versioff == "n3"){
		imgOff = eval("a" + imgName + "off.src");
		imgName = "aimg" + imgName;
		document [imgName].src = imgOff;
	};
};

function openWin(folder,name,x,y){
  myWin= open('', '_blank', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+ x +',height='+ y +'');
  myWin.document.open();
  myWin.document.write('<html><head><title>AOS</title></head>');
  myWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><body style="margin:0px; padding:0px">');
  myWin.document.write('<img src="img/'+ folder +'/'+ name +'.jpg" width="'+ x +'" height="'+ y +'" border="0">');
  myWin.document.write('</body></html>');
  myWin.document.close();  
}
// -->
