-----Original Message-----
please help me.
I'm a fool in webdesign.
how can I create a pop up window?
Kind regards
Rene
.
the following java will creat a new window
that contains a htm that hyperlinks pages back to the
parent window. after this parent page. I have included
the child page (cpanel.htm). hope this helps.
<head>
<title>Parent Window</title>
<script language="Javascript"
type="text/javascript">
<!--Hide
function newwindow()
{
window.open
('cpanel.htm','newWin','width=300,height=200,left=0,top=100
,screenX=0,screenY=100,resizable=yes');
}
//end -->
</script>
</head>
<body bgcolor="#FF0000">
<div align="center">
<h1> Javascript</h1>
</div>
<a href="javascript:newwindow()">go to control
panel</a>
</body>
</html>
cpanel.htm follows
<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>Child Window</title>
<script language="Javascript"
type="text/javascript">
<!--Hide
function updateParent(newURL) {
opener.document.location = newURL
}
// end -->
</script>
</head>
<body bgcolor="#FFFFFF">
<div align="center">
<h1>Control Panel</h1>
<h3>
<a href="javascript:updateParent('index.htm')">YMCA Index
file</a><br />
<a href="javascript:updateParent('index.htm')">YMCA
file</a><br />
</h3>
</div>
</body>
</html>