Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fullscreen Problem

Status
Not open for further replies.

JennyW

Technical User
Mar 1, 2001
323
CA
Hiee,
I have a website that has a link that goes to <bold>ONE</bold> Fullscreen page.

On the Fullscreen I have a &quot;Close&quot; button that closes the Fullscreen and goes back to the opener (page that opened the Fullscreen), but now when I go back to the opener it changes from a normal browser page to a fullscreen.

All my pages are standard website pages (address bar, menu, etc.), but when I go to that Fullscreen I created and then go back to all my other pages they all turn to Fullscreen format.

What can I do?

Here's my code...

<html>
<head>
<title>html tests</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>

<script language=&quot;javascript&quot; type=&quot;text/javascript&quot;>
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos==&quot;random&quot;){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos==&quot;center&quot;){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!=&quot;center&quot; && pos!=&quot;random&quot;) || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}
// -->
</script>

</head>

<body>

<a href=&quot;0002_popup_win4.html&quot; onClick=&quot;NewWindow(this.href,'0002Jenny','type=fullWindow,fullscreen','no','center');return false&quot; onFocus=&quot;this.blur()&quot;>Popup 4 </a>

</body>
</html>

Thanks,
Jenny
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top