function showMap(name, width, height) {
    receive();
    document.getElementById('myMapTable').style.visibility = 'visible';
    showFlash(name, width, height);
}
function showFlash(name, width, height) {
    var flashvars = {};
    var params = {};
        params.play = "true";
        params.loop = "true";
        params.menu = "false";
        params.quality = "high";
        params.scale = "noscale";
        params.wmode = "transparent";
        params.allowfullscreen = "false";
        params.allowscriptaccess = "sameDomain";
    var attributes = {};
        attributes.id = "veresk";
        attributes.align = "middle";
    swfobject.embedSWF(name, "myMap", width, height, "8.0.0", false, flashvars, params, attributes);
}
function receive() {
    document.getElementById('myMapTable').style.visibility = 'hidden';
    document.getElementById('myMapTd').innerHTML = '<div id="myMap"></div>';
}
