function IshowMenu(menu, x, y, child, imgname){
    x1=x; y1=y;
    // ultima generacion de navegadores
    if (isDOM) {
        // para windows
        if (is.win){x1=x+6; y1=y+12;}
        // para linux
        if (is.linux){x1=x+6; y1=y+12;}
        // para mac
        if (is.mac){x1=x-2;y1=y-2;}
    }
    // Internet Explorer 4
    if (isIE4) {
        // para windows
        if (is.win){x1=x+6; y1=y+12;}
        // para mac
        if (is.mac){x1=x-2;y1=y-2;}
    }
    // Otros
    else {
        // para mac
        if (is.mac){x1=x+6;y1=y+12;}
    }
    //x1=x; y1=y;
    MM_showMenu(menu,x1,y1,child,imgname);
}

