<html>
<head>
<title>Abakada CSS Demo: visibility Property</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>
<body onclick="reappear ( )" ondblclick="disappear ( )">
<div class="header"><h2>Abakada CSS Demo: visibility Property</h2></div>
<hr size=1 width=92%>
<center>
<h5>This example uses inline event handlers to dynamically control an object's <b>visibility</b>.</h5>
<p id="msg">Click and double-click anywhere on this page to see the image appear and disappear. </p>
<img id="theImg" style="visibility: hidden"
src="../shared/images/samp08.jpg"
height=125 width=125 border=0 alt="">
</center>
<script language="JavaScript">
<!--
function disappear ( ) {
theImg.style.visibility = "hidden";
}
function reappear ( ) {
theImg.style.visibility = "visible";
}
//-->
</script>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>