<!-- hide from browsers that do not know JavaScript
  
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-->