Don't know exactly what you mean -- I looked at the site through exray vision and only found frames and this.
Don't know java script so I don't know what it is.
<!--To put this html into an existing HTML document, you must copy the JavaScript and-->
<!--paste it in a specific location within the destination HTML document. You must then copy-->
<!--and paste the table in a different location.-->
<html>
<head>
<title>.:::::::::: MACSYSTEM ::::::::::.</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
var howMany = 4; // max number of items listed below
var page = new Array(howMany+1);
page[0]="home1.html";
page[1]="home2.html";
page[2]="home3.html";
page[3]="home4.html";
page[4]="home5.html";
function rndnumber(){
var randscript = -1;
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1));
}
return randscript;
}
quo = rndnumber();
quox = page[quo];
window.location=(quox);
// End -->
</SCRIPT>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Description" content="Macsystem - Empresa dedicada a soluciones de Internet "IP MAGIC" COntrol total para sus negocios en internet, Diseo web, Multimedia, Hosting, desarrollo de aplicaciones, comunicaciones ">
<meta name="Keywords" content="Dise o,Web,Diseo Grafico,Multimedia,Hosting,3D,Modelado 3D,Flash,Dreamweaver,Fireworks,Director,CD,multimedia,CD multimedia,Help Desk,Telecomunicaciones,Equipos de Internet,Equipos de Internet por cable,Lightspeed,IP Magic,Headens,Routers,control de trafico,balance de trafico,QOS control,firewalls control,desktop control,server control,control,e-comerce,e-bussines,Colombia,paginas,paginas web,tecnologia,desarrollos en flash,ilustraci n,arte,wang conectivity,wang,emuladores para wang,repuestos para wang,repuestos wang,aplicaciones para wang,aplicaciones wang,aplicaciones,software,software de comunicaciones,desarrollo de aplicaciones,desarrollo,visual basic,visual studio,cobol,assembler,action script,vrlm,meta stream,linux,cursos,certificacin linux,cusros linux, linux avanzado,linux experto,HTML,sitios en flash,el mejor sitio,galer a de sitio,creatividad,soluciones web,soluciones,internet,lo mejor de internet,internautas,navegantes,hosting,hospedaje,PHP,pgp mail,shoping cart,shoping,virtuality,sitios virtuales,interactividad,sonido,musica,edicin de video,edici n digital,edicin,edici n de sonido,retoque de imagenes">
<meta name="Author" content="Macsystem ltda">
<meta name="Rating" content="Rating">
<!-- Fireworks 3.0 Dreamweaver 3.0 target. Created Sat Feb 10 16:54:02 GMT-0500 (Hr. estndar del Pac fico de SA) 2001 -->
<style type="text/css">
<!--
-->
</style>
<meta name="keywords" content="paginas
">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" link="#000000" vlink="#000000" alink="#000000" text="#000000" onLoad="MM_checkBrowser(4.0,2,2,4.0,1,1,2,'Anterior/Segundo%20Index/index_exp.html','Anterior/Segundo%20Index/index_nets.html');return document.MM_returnValue">
<div align="left"> </div>
<table width="100%" border="0" height="100%" cellpadding="0" cellspacing="0">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="48%"> </td>
<td width="5%"><img src="img/detecting1.gif" width="90" height="37" alt="Detectando Navegador" name="detecting2" align="middle"></td>
<td width="47%"> </td>
</tr>
</table>
</td>
</tr>
</table>
<p> </p>
</body>
</html>
I have not seen the site but it is very easy to create pop up windows using Java script. And swing is not a technology to be used here
Say u have a html page my.html and when someone opens it you want to open another pop up html pop.html , then you can code something like this
<body onload="window.open('popup.html','WindowName','height=150,width=200'')" >
The properties of the child window can be controlled using the third string. Here I have only specified height and width. Refer to JavaScript docs for more details
Shubhrajit