You can call a function to display the div.
<body>
<a href = "javascript:void(0)" onclick = "showPolicy()">Click here.</a>
<div id="light" style="display:none;">
<!-- Add your content here. -->
This is the content/policy.
</div>
</body>
<script type="text/javascript">
function showPolicy()
{
document.getElementById('light').style.display = 'block';
}
</script>
@developer
Junior Poster in Training
70 posts since Nov 2010
Reputation Points: 13
Solved Threads: 10