hola.
Tengo una pagina en la que se deben abriri 2 popups, el problema esta en que uno de ellos al hacer click en el enlace abre todos los demas y quiero que solo abra 1. Osea por ejemplo: enlace 1 abre -> pop up 1, enlace 2 abre -> pop up 2 junto con el pop up 1 .
este es mi codigo (idea general)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Rutas de Ciudadelas</title>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body onclick="MM_openBrWindow('/form/form_01.php','123','width=23,height=123')">
<p><a href="#">ventana1</a></p>
<p onclick="MM_openBrWindow('/form/form_02.php','1234','width=444,height=444')"><a href="#">ventana2</a></p>
</body>
</html>