Criar uma Loja Virtual Grátis


Total de visitas: 1282
index
index

<?php
header("Location: /lobby");
die();
$swf = "http://www.xatserver.com/chat.swf";
if($_GET['login'] != ""){
$swf = "http://www.xatserver.com/login.swf";
}
?><html>
<head>
<title>iXat Test</title>
<style>
html, body{
height: 100%;
width: 100%;
overflow: hidden;
background-color: #EEE;
font-family: arial, verdana, sans;
text-align: center;
margin: 0;
padding: 0;
}
.center {
width: 728px;
height: 486px;
padding: 0px;
margin: 0 auto;
top: 50%;
}
.banner {
color: #FFFFFF;
width: 100%;
text-align: left;
margin: 0 auto;
padding-left: 20px;
padding-top: 0;
padding-right: 20px;
padding-bottom: 0;
background-color: #000000;
}

h2 {
margin: 0;
padding: 0;
display: inline;
}
h3 {
margin: 0;
padding: 0;
display: inline;
}
</style>
</head>
<body>
<div class="banner"><h2>iXat</h3> <h3>Lobby</h3></div>
<div class="login"><a href="http://www.xatserver.com/?login" onclick="document.getElementById('swf').src = 'http://www.xatserver.com/login.swf'; return false; void 0;">Log In</a> | <a href="http://www.xatserver.com/" onclick="document.getElementById('swf').src = 'http://www.xatserver.com/chat.swf'; return false; void 0;">Chat</a> | <a href="http://www.xatserver.com/register.php" onclick="document.location.href='http://www.xatserver.com/register.php'; return false; void 0;">Register</a> | <a href="http://www.xatserver.com/createchat.php">Create Chat</a></div>
<div class="center">
<embed src="<?= $swf; ?>" id="swf" width=728 height=486 allowScriptAccess=always></embed>
</div>
</body>
</html>