var franchises = new Object();
franchises['none'] = 'franchisee0';
franchises['auckland'] = 'franchisee1';
franchises['northshore'] = 'franchisee2';
franchises['northland'] = 'franchisee4';

var regions = new Object();
regions['northland'] = 'northland';
regions['northshore'] = 'northshore';
regions['auckland'] = 'auckland';
regions['waikato'] = 'none';
regions['bayofplenty'] = 'none';
regions['eastcape'] = 'none';
regions['hawkesbay'] = 'none';
regions['manawatu'] = 'none';
regions['taranaki'] = 'none';
regions['wellington'] = 'none';
regions['marlborough'] = 'none';
regions['canterbury'] = 'none';
regions['otago'] = 'none';
regions['southland'] = 'none';
regions['westcoast'] = 'none';
regions['tasman'] = 'none';
regions['nelson'] = 'none';

function jump_to_region(region)
{
    window.location = franchises[regions[region]] + ".html";
    return false;
}

function jump_to_region_contact(region)
{
    window.location = "contact-form.php?franchisee=" + regions[region];
    return false;
}

function jump_to_cookie_franchise()
{
    jump_to_region(readCookie('gmregion'));
    return false;
}

function jump_to_cookie_region_contact()
{
    jump_to_region_contact(readCookie('gmregion'));
    return false;
}