Pop-up Message Test


This page demonstrates the use of a pop-up window. The window is created when the link below is clicked, and disappears when the OK button is pressed.
Before you continue with this page, please take a quick look at the instructions.
The page continues...

 

  • Source

    <HTML>
    <HEAD><TITLE>Pop-up Messages</TITLE>
    <SCRIPT LANGUAGE="JavaScript">
    function instruct()  {
       iwin = window.open("instruct.htm","IWIN",
       "status=no,toolbar=no,location=no,menu=no,width=400,height=300");
    }
    </SCRIPT>
    </HEAD>
    <BODY>
    <H1>Pop-up Message Test</H1>
    <HR>
    This page demonstrates the use of a pop-up window. The window is
    created when the link below is clicked, and disappears when the OK
    button is pressed.
    <HR>
    Before you continue with this page, please take a quick
    look at the
    <A HREF="#" onClick="instruct();">
    instructions</A>.
    <HR>
    The page continues...
    </BODY>
    </HTML>