florida
12-15-2003, 08:51 AM
I have a small pop up window:
function popUpWin()
{
window.open("myWindow.html","myWindow","top=1,left=1,width=200,height=140,resizble,");
}
<form>
<input type="button" onclick="popUpWin();" value="Help">
</form>
Now in the myWindow.html I want to put in a link. I have the link in the myWindow.html page like this:
<html>
<body>
<a href="linktopage.html">PageOne</a>
</body>
</html>
When I click onto the PageOne link it comes up in the pop up window and it stays the same small size and has all the pop up window settings. I want the PageOne link to give me a new page that comes up full broswer size with all the regular browser settings. Please advise.
function popUpWin()
{
window.open("myWindow.html","myWindow","top=1,left=1,width=200,height=140,resizble,");
}
<form>
<input type="button" onclick="popUpWin();" value="Help">
</form>
Now in the myWindow.html I want to put in a link. I have the link in the myWindow.html page like this:
<html>
<body>
<a href="linktopage.html">PageOne</a>
</body>
</html>
When I click onto the PageOne link it comes up in the pop up window and it stays the same small size and has all the pop up window settings. I want the PageOne link to give me a new page that comes up full broswer size with all the regular browser settings. Please advise.