﻿// JScript file containg methods to launch the basket of the sales site from thetechguys.com

// Author:  Daniel Pickles
// Date:     21/05/2008
// Version: 1.0

function AddToBasket (prodcode)
{
    location.href = 'https://shop.thetechguys.com/yourbasket.aspx?sku=' + prodcode;
}

function ViewBasket ()
{
    location.href = 'https://shop.thetechguys.com/yourbasket.aspx';
}

function ViewAccount ()
{
    location.href = 'https://shop.thetechguys.com/youraccount.aspx';
}

function LogInOut()
{
    location.href = 'https://shop.thetechguys.com/LogIn.aspx?return=true';
}