<html>
<head>
<style type="text/css">
<!--
.popup { position: absolute ; background-color: #000; opacity: 0.7; display:none; z-index: 100; float:right; width:100px;height:100px;}
.holder{display:block; background-color: aqua; width:200px; margin-bottom:10px;}
-->
</style>
<script type="text/javascript">
<!--
var backcolor
function show(name, subname)
{
document.getElementById(name).style.display = "block";
backcolor = document.getElementById(subname).style.backgroundColor;
document.getElementById(subname).style.backgroundColor = "Silver";
}
function LostFocus(name, popup)
{
document.getElementById(name).style.backgroundColor = backcolor;
document.getElementById(popup).style.display = "none";
}
-->
</script>
</head>
<body>
<div id="container" class='holder' onmouseleave="LostFocus('container','lock')" > Here is the container with all the information and such in <br/> <a id='button' href="javascript:show('lock', 'container')">Click Me To Lock </a>
<div id="lock" class='popup'></div>
</div>
<div id="container1" class='holder' onmouseleave="LostFocus('container1','lock1')"> Here is the container with all the information and such in <br/> <a id='button' href="javascript:show('lock1', 'container1')">Click Me To Lock </a>
<div id="lock1" class='popup'></div>
</div>
<div id="container2" class='holder' onmouseleave="LostFocus('container2','lock2') ")> Here is the container with all the information and such in <br/> <a id='button' href="javascript:show('lock2', 'container2')">Click Me To Lock </a>
<div id="lock2" class='popup'></div>
</div>
<div id="container3" class='holder' onmouseleave="LostFocus('container3','lock3')")> Here is the container with all the information and such in <br/> <a id='button' href="javascript:show('lock3', 'container3')">Click Me To Lock </a>
<div id="lock3" class='popup'></div>
</div>
<div id="container4" class='holder' onmouseleave="LostFocus('container4','lock4')")> Here is the container with all the information and such in <br/> <a id='button' href="javascript:show('lock4', 'container4')">Click Me To Lock </a>
<div id="lock4" class='popup'></div>
</div>
<div id="container5" class='holder' onmouseleave="LostFocus('container5','lock5')")> Here is the container with all the information and such in <br/> <a id='button' href="javascript:show('lock5', 'container5')">Click Me To Lock </a>
<div id="lock5" class='popup'></div>
</div>
</body>
</html>