Integrate Glance Into Your Web Site

Guests can always connect to Glance sessions by visiting your personal Glance web page, which comes with your Glance subscription.

You can also have them connect right from your company's web site. Just paste these two lines of HTML into any web page, replacing yourname.glance.net with your own Glance Address.

<script language="javascript" src="http://www.glance.net/customize/GlanceEmbed.js"></script>
<script>GlanceJoin("yourname.glance.net");</script>

That's it! The page now includes a Glance box like this:

Tell guests to enter your Session Key and click the Glance button. Moments later, they see your screen.

Note: The Glance box uses an HTML form. Make sure not to put it within another form on your web page.

Have multiple Glance Addresses?

Paste the first line of HTML once on the web page and use the second line for each Glance Address. This example uses a simple HTML table.

<script language="javascript" src="http://www.glance.net/customize/GlanceEmbed.js"></script>
			
<center>
For a live web demo of our product, please call us at 800-123-4567.<br>
John or Jane will give you a personalized tour.
		
<table cellpadding="15">
    <tr>
        <td>John:</td>
        <td><script>GlanceJoin("johnbrown.glance.net");</script></td>
    </tr>
    <tr>
        <td>Jane:</td>
        <td><script>GlanceJoin("janesmith.glance.net");</script></td>
    </tr>
</table>
</center>

For a live web demo of our product, please call us at 800-123-4567.
John or Jane will give you a personalized tour.
John:
Jane:

You could also use a Glance box that lists a name for each Glance Address in a pull-down menu.

<script language="javascript" src="http://www.glance.net/customize/GlanceEmbed.js"></script>
                
<script>GlanceJoinMenu("johnbrown.glance.net/John Brown",
                       "janesmith.glance.net/Jane Smith",
                       "fredfoozbar.glance.net/Freddy Foozbar");</script>

or alongside a "radio" button.

<script language="javascript" src="http://www.glance.net/customize/GlanceEmbed.js"></script>
						
<script>GlanceJoinRadio("demos.acme.glance.net/Demos",
                        "sales.acme.glance.net/Sales",
                        "support.acme.glance.net/Support");</script>

Stack long names with HTML <br> tags.

<script language="javascript" src="http://www.glance.net/customize/GlanceEmbed.js"></script>
						
<script>GlanceJoinRadio("fordprefect.glance.net/Ford Prefect<br>",
                        "arthurdent.glance.net/Arthur Dent<br>",
                        "zaphod.glance.net/Zaphod Beeblebrox<br>",
                        "humma.glance.net/Humma Kavula<br>");</script>

Match your color scheme

Paint the box with colors that complement your web site.

<script language="javascript" src="http://www.glance.net/customize/GlanceEmbed.js"></script>
										
<script>GlanceJoinRadio("style: background-color: #eeffdd; border-color: #66cc00; border-width: 3px",   
    "johnbrown.glance.net/J. Brown<br>",  
    "janesmith.glance.net/J. Smith<br>",  
    "fredfoozbar.glance.net/F. Foozbar<br>");</script>

or match the page's background color, which makes the box invisible.

<script language="javascript" src="http://www.glance.net/customize/GlanceEmbed.js"></script>
                   
<script>GlanceJoin("style: background-color: #ffffff; border-color: #ffffff",
                   "johnbrown.glance.net");</script>

Questions? Check our FAQ or contact us.