function MapCanvas()
{
}

MapCanvas.prototype.positionMapCanvas = function(language)
{
    if (navigator.appName == 'Microsoft Internet Explorer')
    {
        if (language == 'en')
        {
            this.setCanvasAttribute('style', 'top:1536px');
        }
        else if (language == 'el')
        {
            this.setCanvasAttribute('style', 'top:1562px');
        }
    }
    else if (navigator.appName == 'Netscape')
    {
        if (navigator.userAgent.toLowerCase().indexOf('firefox') > -1)
        {
            if (language == 'en')
            {
                this.setCanvasAttribute('style', 'top:1588px');
            }
            else if (language == 'el')
            {
                this.setCanvasAttribute('style', 'top:1639px');
            }
        }
        if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)
        {
            if (language == 'en')
            {
                this.setCanvasAttribute('style', 'top:1545px');
            }
            else if (language == 'el')
            {
                this.setCanvasAttribute('style', 'top:1595px');
            }
        }
    }
}

MapCanvas.prototype.setCanvasAttribute = function(name, value)
{
    document.getElementById('map_canvas').setAttribute(name, value);
}