<!-- hide from browsers that do not know JavaScript

        if (document.images) {
            img1on=new Image();   img1on.src="images/but_home1.gif";
            img2on=new Image();   img2on.src="images/but_about1.gif";
            img3on=new Image();   img3on.src="images/but_news1.gif";
            img4on=new Image();   img4on.src="images/but_contact1.gif";
            
            img1off=new Image();   img1off.src="images/but_home.gif";
            img2off=new Image();   img2off.src="images/but_about.gif";
            img3off=new Image();   img3off.src="images/but_news.gif";
            img4off=new Image();   img4off.src="images/but_contact.gif";
            
        }


    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);
//alert(x1 y1 top left);
top=75;left=100;
window.open(img,'imgs','width='+w+',height='+h+',resizable=no,scrollbars=no,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-->