R
Raffi
Here's my HTML code. What I'm trying to do is when the button is
pushed to refresh the popup window information, I want the popup to
return to the front. The way my code is now, when refreshed the popup
stays in the background confusing the users. Thanks for your help.
--------HTML Code------
<html>
<head>
<script language="javascript" type="text/javascript">
var w = 380;
var h = 230;
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
</script>
</head>
<body bgcolor=\"#aaffff\">
<form method="LINK" onClick="window.open('http://www.google.com',
'popup1', 'width='+w+',height='+h+',toolbar=0,scrollbars=0,screenX='+winl+',screenY='+wint+',left='+winl+',top='+wint+'')"></A>
<input type="submit" value="Continue">
</form>
</body>
</html>
pushed to refresh the popup window information, I want the popup to
return to the front. The way my code is now, when refreshed the popup
stays in the background confusing the users. Thanks for your help.
--------HTML Code------
<html>
<head>
<script language="javascript" type="text/javascript">
var w = 380;
var h = 230;
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
</script>
</head>
<body bgcolor=\"#aaffff\">
<form method="LINK" onClick="window.open('http://www.google.com',
'popup1', 'width='+w+',height='+h+',toolbar=0,scrollbars=0,screenX='+winl+',screenY='+wint+',left='+winl+',top='+wint+'')"></A>
<input type="submit" value="Continue">
</form>
</body>
</html>