archivo index.php
Código PHP:
<html>
<body>
<div align="center" style="padding-top:20px;">
<iframe name="chat_soporte" src="chat_soporte/status.php" width="165" height="195" scrolling="auto" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</div>
</body>
</html>
Código PHP:
<?php
//Por medio de esta función inicializo la sesion
session_start();
include_once('noca.php');
include_once('rcq.php');
?>
<html>
<head>
<title>Status chat</title>
<script language="javascript">
//Script Centrar ventana
function abrir_ventana(url, nombre, ancho, alto) {
xpos=(screen.width/2)-(ancho/2);
ypos=(screen.height/2)-(alto/2);
window.open(url, nombre, 'resizable=1,width='+ancho+',height='+alto+',left='+xpos+',top='+ypos+'');
}
</script>
</head>
<body>
<a href="#" onClick="abrir_ventana('../chat_soporte/client.php','Asesor en linea','518','300')" class="menufuente"><img border="0" src="../chat_soporte/statusimage.php?rn=<?php echo rand(1000,9999);?>" width="160" height="189"></a>
</body>
</html>