






<html>
<head>
<title>Game Name</title>
<link rel="shortcut icon" href="http://website.com/favicon.ico" />
<body background="http://website.com/background.png">
<style>
.hidden{
display:none;
}
.unhidden{
display:block;
}
</style>
<script type="text/javascript">
function show(clickedButton, divID) {
var item = document.getElementById(divID);
if (item) {
if(item.className=='hidden'){
item.className = 'unhidden' ;
clickedButton.value = 'hide'
}else{
item.className = 'hidden';
clickedButton.value = 'show'
}
}}
</script>
</head>
<center>
<div class="wsite-spacer" style="height:50px;"></div>
<div id="about" class="hidden">
<div class="chat">
<iframe src="http://chatolocation.com" frameborder="0" scrolling="yes" width="550" height="600" align="right"></iframe>
</div>
</div>
<iframe src="http://gamelocation.com" frameborder="0" scrolling="no" width="800" height="600"></iframe>
<button id="close" class="closing" onclick="show(this, 'about')" style="color: transparent; background-color: transparent; border-color: transparent; cursor: default;"></button>
</center>
</body>
</html>

