DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Close Current Window (for IE And FF)
<input type="button" value="Close" onclick="CloseWindow();" />
<script type='text/javascript'>
<!--
function CloseWindow() {
ww = window.open(window.location, "_self");
ww.close();
}
-->
</script>




