imgWorld0 = new Image(600,263);
imgWorld0.src = "img/corp/world-0.png";

imgWorld1 = new Image(600,263);
imgWorld1.src = "img/corp/world-1.png";

imgWorld2 = new Image(600,263);
imgWorld2.src = "img/corp/world-2.png";

imgWorld3 = new Image(600,263);
imgWorld3.src = "img/corp/world-3.png";

imgWorld4 = new Image(600,263);
imgWorld4.src = "img/corp/world-4.png";

imgWorld5 = new Image(600,263);
imgWorld5.src = "img/corp/world-5.png";

imgWorld6 = new Image(600,263);
imgWorld6.src = "img/corp/world-6.png";

function imageSwap(image,bLinkToShop) {

    var strTag = '<img src="' + image.src + '" width="600" height="263" border="0" usemap="#worldmap" >';

    document.getElementById('worldmapimage').innerHTML = strTag;
    
    /* now display the contact details */
    if( image == imgWorld1 ) {
        document.getElementById('HouseName').innerHTML='North America';
        document.getElementById('HouseEmail').innerHTML='<a href="mailto:north-america@fastmarkets.com">north-america@fastmarkets.com</a>';
        document.getElementById('ContactName').innerHTML='Bernard Hunter';
        document.getElementById('ContactTelephone').innerHTML = '+1 (416) 200 0085';
    }
    else if( image == imgWorld2 ) {
        document.getElementById('HouseName').innerHTML='South America';
        document.getElementById('HouseEmail').innerHTML='<a href="mailto:south-america@fastmarkets.com">south-america@fastmarkets.com</a>';
        document.getElementById('ContactName').innerHTML='Celta Metals';
        document.getElementById('ContactTelephone').innerHTML='(+56 2) 206 5252';
    }
    else if( image == imgWorld3 ) {
        document.getElementById('HouseName').innerHTML='Europe, Middle East &amp; Africa';
        document.getElementById('HouseEmail').innerHTML='<a href="mailto:emea@fastmarkets.com">sales@fastmarkets.com</a>';
        document.getElementById('ContactName').innerHTML='FastMarkets Ltd';
        document.getElementById('ContactTelephone').innerHTML='+44 (0) 845 241 9949';
    }
    else if( image == imgWorld4 ) {
        document.getElementById('HouseName').innerHTML='India';
        document.getElementById('HouseEmail').innerHTML='<a href="mailto:india@fastmarkets.com">india@fastmarkets.com</a>';
        document.getElementById('ContactName').innerHTML='FastMarkets Ltd';
        document.getElementById('ContactTelephone').innerHTML='+91 99300 41205';
    }
    else if( image == imgWorld5 ) {
        document.getElementById('HouseName').innerHTML='Asia';
        document.getElementById('HouseEmail').innerHTML='<a href="mailto:asia@fastmarkets.com">asia@fastmarkets.com</a>';
        document.getElementById('ContactName').innerHTML='FastMarkets Ltd';
        document.getElementById('ContactTelephone').innerHTML = '+65 6242 7089';
    }
    else if( image == imgWorld6 ) {
        document.getElementById('HouseName').innerHTML='Australia & NZ';
        document.getElementById('HouseEmail').innerHTML='<a href="mailto:australia-nz@fastmarkets.com">australia-nz@fastmarkets.com</a>';
        document.getElementById('ContactName').innerHTML='John Kempler';
        document.getElementById('ContactTelephone').innerHTML='+61-(0)401666095';
    }
    
    if( bLinkToShop ) {
        // this is a shop map link
        strTag = '';
        
        if( image == imgWorld1 ) { /* North America */
            strTag = '<a href="ShopBundles.aspx?hid=2">Click here to continue &gt;&gt;</a>';
        }
        else if( image == imgWorld2 ) { /* South America */
            strTag = '<a href="ShopBundles.aspx?hid=3">Click here to continue &gt;&gt;</a>';
        }
        else if( image == imgWorld3 ) { /* EMEA */
            strTag = '<a href="ShopBundles.aspx?hid=1">Click here to continue &gt;&gt;</a>';
        }
        else if( image == imgWorld4 ) { /* India */
            strTag = '<a href="ShopBundles.aspx?hid=4">Click here to continue &gt;&gt;</a>';
        }
        else if( image == imgWorld5 ) { /* Asia */
            strTag = '<a href="ShopBundles.aspx?hid=1">Click here to continue &gt;&gt;</a>';
        }
        else if( image == imgWorld6 ) { /* Australia */
            strTag = '<a href="ShopBundles.aspx?hid=6">Click here to continue &gt;&gt;</a>';
        }
        else {
            strTag = '';
        }
    }
}
