<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage
5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<title>Exemplu de pop-up JavaScript</title>
<script>
function openPopup(url, windowName, width, height, popupX, popupY)
{
var
optiuni =
"screenX=" + popupX +
",left=" + popupX +
",screenY=" + popupY +
",top=" + popupY +
",width=" + width +
",height=" + height +
",toolbar=false,scrollbars=false,resizable=false,status=false"+
",menubar=false,location=false,directories=false";
//
modificati caracteristicile ferestrei
window.open(url,
windowName, optiuni, true);
}
openPopup("../../bogdan_world","Bogdan",300,300,100,100);
</script>
</head>
<body>
<H3 align="right">Pagina aceasta lanseaza un pop-up.</H3>
</body>
</html>