I have this piece of code that when someone go's to my site its suppose to load up and when they do load up they have the option of closing it. The thing is, is that it doesnt do neither of those things. Can you help? Here is the code: <body onLoad='document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block''> <style type='text/css'> .black_overlay{ display: none; position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; background-color: black; z-index:1001; -moz-opacity: 0.8; opacity:.80; filter: alpha(opacity=80); } .white_content { display: none; position: absolute; top: 25%; left: 25%; width: 300px; height: 250px; padding: 16px; border: 1px solid black; background-color: white; z-index:1002; overflow: auto; } </style> <div class='white_content' id='light'> <div class='separator' style='TEXT-ALIGN: center; CLEAR: both'> <a href='http://www.dshs.state.tx.us/chscontracts/newsletter/summer2009/images/pics/checklist.jpg' imageanchor='1' style='MARGIN-BOTTOM: 1em; FLOAT: left; CLEAR: left; MARGIN-RIGHT: 1em'><img border='0' height='200' src='http://www.dshs.state.tx.us/chscontracts/newsletter/summer2009/images/pics/checklist.jpg' width='115'/></a></div> "Join our newsletter and get a <b><span style='color:red;'>FREE</span> </b>copy of the <b>Adrenaline Gaming Checklist</b>" <b> Plus get daily updates from Game Adrenaline sent to your email!</b> <form action='http://feedmailpro.com/subscriptions' method='post'> <input name='subscriber[feed_id]' type='hidden' value='708'/> <input class='textf' gtbfieldid='6' name='subscriber[email]' onblur='if (this.value == '') {this.value = 'Enter your email address';}' onfocus='if (this.value == 'Enter your email address') {this.value = '';}'/> <input class='subscribesubmit' src='http://i263.photobucket.com/albums/ii150/mohamedrias/subscribesubmit.png' type='image'/></form> <div style='TEXT-ALIGN: center'> <span style='font-size:x-small;'><i><span style='FONT-WEIGHT: bold'>We respect your privacy and we will never spam you.</span></i></span></div> <div style='TEXT-ALIGN: center'/> <a href='javascript:void(0)' onclick='document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none''>Close</a></div> <div class='black_overlay' id='fade'/> Code (markup):