<!-- hide from browsers that do not know JavaScript

        if (document.images) {
            img11on=new Image();   img11on.src="images/but_na1.jpg";			
            img12on=new Image();   img12on.src="images/but_mexico1.jpg";
            img13on=new Image();   img13on.src="images/but_euro1.jpg";
			img14on=new Image();   img14on.src="images/but_africa1.jpg";
			img15on=new Image();   img15on.src="images/but_ind1.jpg";
            
            img11off=new Image();   img11off.src="images/but_na.jpg";
            img12off=new Image();   img12off.src="images/but_mexico.jpg";
            img13off=new Image();   img13off.src="images/but_euro.jpg";
			img14off=new Image();   img14off.src="images/but_africa.jpg";
			img15off=new Image();   img15off.src="images/but_ind.jpg";
        }


    function imgOn(imgName,txt) {
            if (document.images) {
                document[imgName].src = eval(imgName + "on.src");
            }
    }
    function imgOff(imgName) {
            if (document.images) {
                document[imgName].src = eval(imgName + "off.src");
            }
    }
    
function popwin(img,w,h){
var x1 = screen.width;
var y1 = screen.height;
var top = parseInt((y1 - h)/2);
var left = parseInt((x1 - w)/2);
window.open(img,'show','width='+w+',height='+h+',resizable=yes,scrollbars=yes,status=no,top='+top+',left='+left);
return false;
}

function popopen(img){
window.open(img,'imx','width=100,height=50,resizable=no,scrollbars=no,status=no,top=50,left=50');
return false;
}


function win(image,title,w,h) {

var x1 = screen.width;
var y1 = screen.height;
var top = parseInt((y1 - h)/2);
var left = parseInt((x1 - w)/2);

ww=w;
wh=h+20;
//alert(image+'\nTitle : '+title+'\nWidth x Height :'+w+' x '+h+'\n Screen Size :'+x1+' x '+y1+'\n'+ww+' - '+wh);

	show=window.open('','show','width='+ww+',height='+wh+',resizable=no,scrollbars=no,status=no,top='+top+',left='+left);
	show.document.write('<html><head><title>Cicadamedia '+title+'</title>');
	show.document.write('<link rel="stylesheet" href="sns/styles.css"></head>');
	show.document.write('<body topmargin="0" leftmargin="0" marginwidth="0" bgcolor="#eeeeee" onload="window.focus();">');
	show.document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%">');
	show.document.write('<tr><td><a href="javascript:window.close();"><img src="images/'+image+'.jpg" width="'+w+'" height="'+h+'" border="0"></a></td></tr>');
	show.document.write('<tr><td class="sbl" align="center" height="25"><a href="javascript:window.close();">Close this window</a></td></tr>');
	show.document.write('</table></body></html>');
}

// end hiding-->
