Text Box:

Ne Tentes aut Perfice -If somethings worth doing, its worth doing well

Jonesthephone

How do you do that ? Create a pop-up browser window

In order to create and launch  a controllable Pop-up window you have

to use a javascript application your HTML code

 

<script language="JavaScript" type="text javascript">
<!--
function Show(Url, Name, Features)
{
window.open(Url, Name, Features);
}
// -->
</script>
 
Then you need to add the parameter to the individual items that you want to launch new windows for this can be either a text or Graphic object
javascript:Show('http://www.fourthcoffee.com/
', 'newwindow','toolbar=no,scrollbars=yes,resizable=yes,height=250’)
 
The protocol being 3 elements surround by single speech marks
‘websitename or file location relative to calling page’ 
Followed by a comma ,
‘ pagename with no gaps’
Followed by a comma ,
‘enter attributes each comma delimited , which include 
Toolbar= yes or No,
Menubar=yes or no,
Location=yes or no,
Directories= yes or no,
Status=yes or no,
Scrollbars= yes or no,
Height =x (in pixels),
Width=y(in pixels),
Left= x(pixels),
Top=y (pixels),
Resizable=yes or no,
Fullscreen=yes or no.
Followed by single speech mark ‘ and closed bracket )
For Microsoft Publisher users a description is included at the following URL  http://office.microsoft.com/en-gb/publisher/HA011587451033.aspx?pid=CL100632931033
 
 
 
 
 
 

· 

Attribute

What it does

Possible values

menubar

Specifies whether to display a menu bar at the top of the window

yes or no

toolbar

Specifies whether to display the main toolbar (with the buttons for back, forward, stop, and so on)

yes or no

location

Specifies whether to display the location bar (the Address Bar in Microsoft Internet Explorer) where URLs are typed and displayed

yes or no

directories

Specifies whether to display any additional toolbars (for example, the Links bar in Internet Explorer)

yes or no

status

Specifies whether to display the status bar at the bottom of the window

yes or no

scrollbars

Specifies whether to display the horizontal and vertical scrollbars that normally appear when the page content is larger than the screen

yes or no

height

Specifies the height of the window in pixels

A number, such as 250

width

Specifies the width of the window in pixels

A number, such as 250

left

In Internet Explorer, specifies the distance in pixels of the new window from the left edge of the screen (for Netscape Navigator, use

screenx

)

A number, such as 0

top

In Internet Explorer, specifies the distance in pixels of the new window from the top edge of the screen (for Netscape Navigator, use

screeny

)

A number, such as 0

resizable

When enabled, allows the user to manually resize the window by dragging its edges or corners

yes or no

fullscreen

When enabled, causes the window in Internet Explorer to open in full-screen mode

yes or no