/*
    Filename: main.js
    
    Date: 27 Jan 2007
    
    URL: http://bandwidthcontroller.com/main.js
    
    Description: Common javascript functions.
*/

function homeButtonClicked(eventInformation)
{
	document.location.href="index.html";
}

function downloadButtonClicked(eventInformation)
{
	document.location.href="download.html";
}

function purchaseButtonClicked(eventInformation)
{
	document.location.href="purchase.html";
}

function tutorialButtonClicked(eventInformation)
{
	document.location.href="tutorial.html";
}

