﻿// JavaScript File

//------------------------------------------------------------------------
// Description: Browser navigation functions
// Author:      Scott Rendall
// Copyright:   © 2004 Scott Rendall
// Updates:     Addition of social networking functions 2010
//------------------------------------------------------------------------

function favorites()
	{
	window.external.AddFavorite(location.href, document.title);
	}
function homepage()
	{
	document.body.style.behavior = 'url(#default#homepage)';
	document.body.setHomePage(document.location);
	}
function popup(url)
	{
	window.open(url, null, "toolbar=no, location=no, status=no, menubar=no");
	}
function print()
	{
	window.print();
	}
function email()
    {
    var url = 'mailto:?subject=' + document.title + '&body=I thought you might like this page ' + document.location;
    window.location = url;
    }

function facebook()
{
    var url = 'http://www.facebook.com/sharer.php?u=' + encodeURIComponent(document.location);
    window.location = url;
}
function linkedin()
{
    var url = 'http://www.linkedin.com/shareArticle?url=' + encodeURIComponent(document.location);
    window.location = url;
}
function twitter()
{
    var url = 'http://twitter.com/home?status=' + encodeURIComponent(document.title) + '+' + encodeURIComponent(document.location);
    window.location = url;
}
